gpt4 book ai didi

java - 在 XmlElement 上不区分大小写

转载 作者:行者123 更新时间:2023-11-30 11:03:18 25 4
gpt4 key购买 nike

我目前正在从事 Java WebService 项目。

假设我有这个类:

@XmlRootElement
public class person{

private String name;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}

所以,我的 Request 对象看起来像:

<person>
<name>Something</name>
</person>

但我想和:

<PERSON>
<NAME>Something</NAME>
</PERSON>

,即不区分大小写。

我知道这个问题已经有好几个人提出了。用于回答这个问题的链接是这样的:

http://blog.bdoughan.com/2010/12/case-insensitive-unmarshalling.html

这篇文章已经好几年了(+5 年),所以我不知道是否有专门的注释用于此目的,例如:

@XmlElement(lower-case(name="No matter what you InTroDuCe i allways be introduce"))
public String getName() {
return name;
}

编辑:

我提供的链接获取一个 .xml 文件。我不想使用 XML 文件,因为我需要将请求 Java 对象编码为 XML。所以我的问题是:

可以使用 Filter 类并将我的 HttpServletRequest 更改为小写,还是有更好的方法?

我的过滤器类(由 Netbeans 生成):

public class NewFilter implements Filter {

private static final boolean debug = true;

// The filter configuration object we are associated with. If
// this value is null, this filter instance is not currently
// configured.
private FilterConfig filterConfig = null;

public NewFilter() {
}

private void doBeforeProcessing(ServletRequest request, ServletResponse response)
throws IOException, ServletException {
if (debug) {
log("NewFilter:DoBeforeProcessing");
}

// Write code here to process the request and/or response before
// the rest of the filter chain is invoked.
// For example, a logging filter might log items on the request object,
// such as the parameters.
/*
for (Enumeration en = request.getParameterNames(); en.hasMoreElements(); ) {
String name = (String)en.nextElement();
String values[] = request.getParameterValues(name);
int n = values.length;
StringBuffer buf = new StringBuffer();
buf.append(name);
buf.append("=");
for(int i=0; i < n; i++) {
buf.append(values[i]);
if (i < n-1)
buf.append(",");
}
log(buf.toString());
}
*/
}

private void doAfterProcessing(ServletRequest request, ServletResponse response)
throws IOException, ServletException {
if (debug) {
log("NewFilter:DoAfterProcessing");
}

// Write code here to process the request and/or response after
// the rest of the filter chain is invoked.
// For example, a logging filter might log the attributes on the
// request object after the request has been processed.
/*
for (Enumeration en = request.getAttributeNames(); en.hasMoreElements(); ) {
String name = (String)en.nextElement();
Object value = request.getAttribute(name);
log("attribute: " + name + "=" + value.toString());

}
*/
// For example, a filter might append something to the response.
/*
PrintWriter respOut = new PrintWriter(response.getWriter());
respOut.println("<P><B>This has been appended by an intrusive filter.</B>");
*/
}

/**
*
* @param request The servlet request we are processing
* @param response The servlet response we are creating
* @param chain The filter chain we are processing
*
* @exception IOException if an input/output error occurs
* @exception ServletException if a servlet error occurs
*/
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {

if (debug) {
log("NewFilter:doFilter()");
}

doBeforeProcessing(request, response);

Throwable problem = null;
try {
chain.doFilter(request, response);
} catch (Throwable t) {
// If an exception is thrown somewhere down the filter chain,
// we still want to execute our after processing, and then
// rethrow the problem after that.
problem = t;
t.printStackTrace();
}

doAfterProcessing(request, response);

// If there was a problem, we want to rethrow it if it is
// a known type, otherwise log it.
if (problem != null) {
if (problem instanceof ServletException) {
throw (ServletException) problem;
}
if (problem instanceof IOException) {
throw (IOException) problem;
}
sendProcessingError(problem, response);
}
}

/**
* Return the filter configuration object for this filter.
*/
public FilterConfig getFilterConfig() {
return (this.filterConfig);
}

/**
* Set the filter configuration object for this filter.
*
* @param filterConfig The filter configuration object
*/
public void setFilterConfig(FilterConfig filterConfig) {
this.filterConfig = filterConfig;
}

/**
* Destroy method for this filter
*/
public void destroy() {
}

/**
* Init method for this filter
*/
public void init(FilterConfig filterConfig) {
this.filterConfig = filterConfig;
if (filterConfig != null) {
if (debug) {
log("NewFilter:Initializing filter");
}
}
}

/**
* Return a String representation of this object.
*/
@Override
public String toString() {
if (filterConfig == null) {
return ("NewFilter()");
}
StringBuffer sb = new StringBuffer("NewFilter(");
sb.append(filterConfig);
sb.append(")");
return (sb.toString());
}

private void sendProcessingError(Throwable t, ServletResponse response) {
String stackTrace = getStackTrace(t);

if (stackTrace != null && !stackTrace.equals("")) {
try {
response.setContentType("text/html");
PrintStream ps = new PrintStream(response.getOutputStream());
PrintWriter pw = new PrintWriter(ps);
pw.print("<html>\n<head>\n<title>Error</title>\n</head>\n<body>\n"); //NOI18N

// PENDING! Localize this for next official release
pw.print("<h1>The resource did not process correctly</h1>\n<pre>\n");
pw.print(stackTrace);
pw.print("</pre></body>\n</html>"); //NOI18N
pw.close();
ps.close();
response.getOutputStream().close();
} catch (Exception ex) {
}
} else {
try {
PrintStream ps = new PrintStream(response.getOutputStream());
t.printStackTrace(ps);
ps.close();
response.getOutputStream().close();
} catch (Exception ex) {
}
}
}

public static String getStackTrace(Throwable t) {
String stackTrace = null;
try {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
t.printStackTrace(pw);
pw.close();
sw.close();
stackTrace = sw.getBuffer().toString();
} catch (Exception ex) {
}
return stackTrace;
}

public void log(String msg) {
filterConfig.getServletContext().log(msg);
}

}

编辑 2:

在@Kenneth Clark 的帮助下,我做了:

   @Override
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {

if (debug) {
log("NewFilter:doFilter()");
}

doBeforeProcessing(request, response);

Throwable problem = null;

try {

final HttpServletRequestWrapper wrapped = new HttpServletRequestWrapper((HttpServletRequest) request) {

public String toLowerCase() {

StringBuffer jb = new StringBuffer();
String line = null;
try {
BufferedReader reader = request.getReader();
while ((line = reader.readLine()) != null) {
jb.append(line);
}
} catch (Exception e) { /*report an error*/ }

return jb.toString().toLowerCase();
}

};

chain.doFilter(wrapped, response);
} catch (IOException | ServletException t) {
// If an exception is thrown somewhere down the filter chain,
// we still want to execute our after processing, and then
// rethrow the problem after that.
problem = t;
}

doAfterProcessing(request, response);

// If there was a problem, we want to rethrow it if it is
// a known type, otherwise log it.
if (problem
!= null) {
if (problem instanceof ServletException) {
throw (ServletException) problem;
}
if (problem instanceof IOException) {
throw (IOException) problem;
}
sendProcessingError(problem, response);
}
}

但我仍然没有要求小写。我做错了什么?

最佳答案

要读取 HttpServletRequest 的内容,您可以执行以下操作,

    StringBuffer stringBuffer = new StringBuffer();
String line = null;
try {
BufferedReader reader = httpServletRequest.getReader();
while ((line = reader.readLine()) != null) {
stringBuffer.append(line);
}
} catch (Exception e) { e.printStackTrace(); /// Do something with this }

然后您可以调用包含 XSL 解决方法的方法来执行转换

String transformedXML = transformTheXmlString(stringBuffer.toString());

这是 XSL 解决方法,下面的示例将小写转换为大写

   <xsl:element name="{translate(local-name(),$lcase,$ucase)}">

翻转$lcase,$ucase来切换大小写

public class Transform {

public static void main(String[] args) throws TransformerException {
String inXMl = "<test>CamelCase</test>";

StringWriter writer = new StringWriter();
String inputXSLFile = "C:\\text.xsl";

TransformerFactory factory = TransformerFactory.newInstance();
StreamSource xslStream = new StreamSource(new File(inputXSLFile));
Transformer transformer = factory.newTransformer(xslStream);

StreamSource in = new StreamSource(new StringReader(inXMl));
StreamResult out = new StreamResult(writer);
transformer.transform(in, out);
System.out.println(writer.toString());
}
}

从 XSL 字符串转换

public class Transform {

public static void main(String[] args) throws TransformerException {
String inXMl = "<test>CamelCase</test>";

StringWriter writer = new StringWriter();
String inputXSL = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" +
"<xsl:stylesheet version=\"1.0\"\n" +
" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n" +
" <xsl:variable\n" +
" name=\"lcase\">abcdefghijklmnopqrstuvwxyz\n" +
" </xsl:variable>\n" +
" <xsl:variable\n" +
" name=\"ucase\">ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" +
" </xsl:variable>\n" +
"\n" +
" <xsl:template match=\"@*|node()\">\n" +
" <xsl:copy>\n" +
" <xsl:apply-templates select=\"@*|node()\"/>\n" +
" </xsl:copy>\n" +
" </xsl:template>\n" +
" <xsl:template match=\"*\">\n" +
" <xsl:element name=\"{translate(local-name(),$lcase,$ucase)}\">\n" +
" <xsl:apply-templates select=\"@*|node()\"/>\n" +
" </xsl:element>\n" +
" </xsl:template>\n" +
"</xsl:stylesheet>";

TransformerFactory factory = TransformerFactory.newInstance();
StreamSource xslStream = new StreamSource(new StringReader(inputXSL));
Transformer transformer = factory.newTransformer(xslStream);

StreamSource in = new StreamSource(new StringReader(inXMl));
StreamResult out = new StreamResult(writer);
transformer.transform(in, out);
System.out.println(writer.toString());
}
}

XSL

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable
name="lcase">abcdefghijklmnopqrstuvwxyz
</xsl:variable>
<xsl:variable
name="ucase">ABCDEFGHIJKLMNOPQRSTUVWXYZ
</xsl:variable>

<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{translate(local-name(),$lcase,$ucase)}">
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>

XSL 摘自: http://helpdesk.objects.com.au/java/how-to-convert-all-xml-element-names-to-lower-case

关于java - 在 XmlElement 上不区分大小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30462620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com