gpt4 book ai didi

java - 为什么我不能在我的 java 应用程序的 GAE 中换行?

转载 作者:行者123 更新时间:2023-12-01 23:52:01 28 4
gpt4 key购买 nike

为什么我不能在 GAE 中新建一行?

这不起作用。

代码:定时器类:

public String list() throws InvalidProtocolBufferException{
String newLine = System.getProperty("line.separator");
String adat = new String();
for (RequestStatProto sList : lists){
adat+="start_timestamp_milliseconds: \r\n"+sList.getStartTimestampMilliseconds()+newLine;
adat+="http_method: "+sList.getHttpStatus()+newLine;
adat+="duration_milliseconds"+sList.getDurationMilliseconds()+newLine;
adat+=newLine;
}
return adat;
}

测试.jsp:

<% 
Timer timer=new Timer();
timer.setMem();
pageContext.setAttribute("timer",timer.list());
%>

<p>
<b>Memcache Statisztikák:</b>
${fn:escapeXml(timer)}
</p>

我该怎么做?

感谢您的帮助!

最佳答案

由于它呈现到网页,因此换行符 "\r\n""\n"不起作用,相反你必须使用 <br \>

或者,您应该将列表返回到 JSP 并在那里迭代它并添加 <br \>标签就像您在 RequestStatProto sList 中一样当前循环。

关于java - 为什么我不能在我的 java 应用程序的 GAE 中换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16201585/

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