jsp 文件对从 csv 文件检索的数据进行排序
我有一个包含姓氏和名字的 CSV 文件,我有一个 jsp 文件来从 CSV 文件检索数据。这就是我到目前为止所做的:
<body>
<%
String file = "C:\\Users\\user\\Desktop\\file.csv";
String line;
int count = 0;
int i = 0;
FileInputStream fis = new FileInputStream(file);
DataInputStream dis = new DataInputStream(fis);
%>
<table border=0>
<%
while((line = dis.readLine())!=null) {
%>
<tr>
<%
String[] str = line.split(",");
for(int j=0; j<str.length; j++) {
%>
<td>
<%
out.print(" " + str[j] + " ");
%>
</td>
<%
}
%>
</tr>
<%
//out.println("<br>");
i++;
}
%>
</table>
</body>
</html>
但是我需要根据姓氏对表进行排序,那么我应该在jsp文件中做什么?
I have a CSV file which has lastname and first name, i have a jsp file to to retrieve the data from CSV file. This is what I have done so far:
<body>
<%
String file = "C:\\Users\\user\\Desktop\\file.csv";
String line;
int count = 0;
int i = 0;
FileInputStream fis = new FileInputStream(file);
DataInputStream dis = new DataInputStream(fis);
%>
<table border=0>
<%
while((line = dis.readLine())!=null) {
%>
<tr>
<%
String[] str = line.split(",");
for(int j=0; j<str.length; j++) {
%>
<td>
<%
out.print(" " + str[j] + " ");
%>
</td>
<%
}
%>
</tr>
<%
//out.println("<br>");
i++;
}
%>
</table>
</body>
</html>
But I need to sort the table based on last name, so what should I do in jsp file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能希望将名字和姓氏存储到 List 然后可以使用 集合。 sort 方法并立即在您的 jsp 中显示该列表。
顺便说一句,您不应该在 scriplet 标记内执行此操作,而是可以在 servlet 类内执行所有操作。您应该使用属性文件之类的内容来代替硬编码文件路径。
You may want to store first and last name into a List and then can sort that List Using Collection.sort method and displaying that list straight away in your jsp.
BTW you should not do this thing inside scriplet tag ,instead you can do all this inside a servlet class.In place of hardcoding filepath you should use something like property files .