0

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

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

谢谢

我的代码:

    <%@ 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>
4

3 回答 3

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
        }
    }

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

于 2012-06-13T10:52:47.543 回答
0

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

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

将所有行读入字符串并将它们附加到一个中。

数据样本:(第 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 循环中,将每一行分别拆分为一个数组,然后硬编码列号或将数组的长度取模作为索引。

于 2012-06-13T10:58:21.413 回答
0

公共类 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();
    }
}
于 2014-12-08T15:06:48.613 回答