jsp 文件对从 csv 文件检索的数据进行排序

发布于 2024-11-27 18:35:09 字数 727 浏览 2 评论 0原文

我有一个包含姓氏和名字的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七七 2024-12-04 18:35:09

您可能希望将名字和姓氏存储到 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 .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文