如何使用jsp / java从csv文件中读取特定列的数据?

时间:2012-06-13 10:41:44

标签: java jsp csv

在我的应用程序中,我需要使用jsp读取选项卡分隔的csv文件的特定列。但我可以读取整行数据而不是特定列。

我需要这方面的帮助。请帮帮我

谢谢

mycode的:

    <%@ page import="java.io.*"%>
    <html>
    <body>
    <% 
    String fName = "c:\\csv\\myfile.csv";
    String thisLine; 
    int count=0; 
    FileInputStream fis = new FileInputStream(fName);
    DataInputStream myInput = new DataInputStream(fis);
    int i=0; 
    %>
    <table>
    <%
    while ((thisLine = myInput.readLine()) != null)
   {
    String strar[] = thisLine.split(",");
    for(int j=0;j<strar.length;j++)
    {
    if(i!=0)
    {
     out.print(" " +strar[j]+ " ");
    }
    else
    {
    out.print(" <b>" +strar[j]+ "</b> ");
    }
    }
    out.println("<br>");
    i++;
    } 
    %>
    </table>
    </body>
    </html>

3 个答案:

答案 0 :(得分:2)

我认为您不能阅读特定列。请使用CSVParser读取整行,或者您可以逐行读取CSV并将其拆分并获取String数组然后您可以获取特定列但是,你需要阅读整行增益。

试试吧。

    String fName = "C:\\Amit\\abc.csv";
    String thisLine;
    int count = 0;
    FileInputStream fis = new FileInputStream(fName);
    DataInputStream myInput = new DataInputStream(fis);
    int i = 0;
    while ((thisLine = myInput.readLine()) != null) {
        String strar[] = thisLine.split(",");
            System.out.println(strar[3]);
                        // Here column 2
        }
    }

通过这种方式,您可以阅读特定列。

答案 1 :(得分:0)

前几天我在Objective C中遇到了类似的问题,但这就是我解决它的方法。

此方法假定您知道所需数据的列号。 (例如,如果你想要第6列第1列)

将所有行读入字符串并将其追加到一个字符串中。

数据样本:(第1至6列)

1,2,3,4,5,6
13,45,63,29,10,8
11,62,5,20,13,2

字符串1 = 1,2,3,4,5,6

字符串2 = 13,45,63,29,10,8

字符串3 = 11,62,5,20,13,2

然后你应该得到这个:

字符串合并= 1,2,3,4,5,6,13,45,63,29,10,8,11,62,5,20,13,2 //add in the missing "," when you concatenate strings

接下来,您需要将字符串拆分为所有值的数组。

使用类似这样的代码:(写在我的头顶,所以可能会关闭。)

String[] values = combined.split(",");  

现在你应该有这样的东西:

Values = `"1", "2", "3", ... etc`

最后一步是循环遍历整个数组并模拟所需的任何列:

//Remember that java numbers arrays starting with 0.
//The key here is that all remainder 0 items fall into the first column.  All remainder 1 items fall into the second column.  And so on.

    for(int i = 0; i < values.length(); i++)
    {
            //Column1 - Column6 -> array lists of size values.length/number of columns
            //In this case they need to be size values.length/6
        if(i % 6 == 0)
            column1.add(values[i]);
        else if(i % 6 == 1)
            column2.add(values[i]);
        else if(i % 6 == 2)
            column3.add(values[i]);
        else if(i % 6 == 3)
            column4.add(values[i]);
        else if(i % 6 == 4)
            column5.add(values[i]);
        else if(i % 6 == 5)
                column6.add(values[i]);

    }

~~~~~~~~~~~~~~~~

编辑:

您在问题中添加了代码。上面我把它们保存在记忆中。你只需循环并打印出来。在while循环中,将每一行分别拆分为一个数组,然后对列号进行硬编码或将数组的长度作为索引模数。

答案 2 :(得分:0)

public class ParseCSVs {     public static void main(String [] args){

    try {

        // csv file containing data
        String strFile = "./input//SIMNumbers.csv";

        String line = "";

        System.out.println("Enter line number to configure");
        Scanner sc = new Scanner(System.in);
        int lineNumber = sc.nextInt();

        BufferedReader br = new BufferedReader(new FileReader(strFile));
        if ((line = br.readLine()) != null) {

            String cvsSplitBy = ",";
            String blankCell = null;
            // use comma as separator
            String[] cols = line.split(cvsSplitBy);
            for (int i = 0; i < cols.length; i++)
                System.out.println("Coulmns = " + cols[i]);
            // System.exit(0);
        } else
            System.out.println("No data found in csv");
    } catch (IOException e) {
        e.printStackTrace();
    }
}