日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

java 读取csv_Java读取CSV的常用方法 | 学步园

發布時間:2023/12/10 java 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java 读取csv_Java读取CSV的常用方法 | 学步园 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在項目開發中,我們經常需要讀取csv的內容的操作。讀取的邏輯并不復雜。主要是對有換行的,逗號,引號的處理恰當的話就沒問題了。

下面作為memo,把在項目中的讀取方法拷貝了過來。有了下面的這些方法,在CSV的讀取和輸出的時候都非常方便。

package com.han.csv.util;

import java.io.BufferedReader;

import java.io.FileInputStream;

import java.io.InputStreamReader;

import java.util.ArrayList;

public class CSVFileUtil {

// CSV文件編碼

public static final String ENCODE = "UTF-8";

private FileInputStream fis = null;

private InputStreamReader isw = null;

private BufferedReader br = null;

public CSVFileUtil(String filename) throws Exception {

fis = new FileInputStream(filename);

isw = new InputStreamReader(fis, ENCODE);

br = new BufferedReader(isw);

}

// ==========以下是公開方法=============================

/**

* 從CSV文件流中讀取一個CSV行。

*

* @throws Exception

*/

public String readLine() throws Exception {

StringBuffer readLine = new StringBuffer();

boolean bReadNext = true;

while (bReadNext) {

//

if (readLine.length() > 0) {

readLine.append("\r\n");

}

// 一行

String strReadLine = br.readLine();

// readLine is Null

if (strReadLine == null) {

return null;

}

readLine.append(strReadLine);

// 如果雙引號是奇數的時候繼續讀取。考慮有換行的是情況。

if (countChar(readLine.toString(), '"', 0) % 2 == 1) {

bReadNext = true;

} else {

bReadNext = false;

}

}

return readLine.toString();

}

/**

*把CSV文件的一行轉換成字符串數組。指定數組長度,不夠長度的部分設置為null。

*/

public static String[] fromCSVLine(String source, int size) {

ArrayList tmpArray = fromCSVLinetoArray(source);

if (size < tmpArray.size()) {

size = tmpArray.size();

}

String[] rtnArray = new String[size];

tmpArray.toArray(rtnArray);

return rtnArray;

}

/**

* 把CSV文件的一行轉換成字符串數組。不指定數組長度。

*/

public static ArrayList fromCSVLinetoArray(String source) {

if (source == null || source.length() == 0) {

return new ArrayList();

}

int currentPosition = 0;

int maxPosition = source.length();

int nextComma = 0;

ArrayList rtnArray = new ArrayList();

while (currentPosition < maxPosition) {

nextComma = nextComma(source, currentPosition);

rtnArray.add(nextToken(source, currentPosition, nextComma));

currentPosition = nextComma + 1;

if (currentPosition == maxPosition) {

rtnArray.add("");

}

}

return rtnArray;

}

/**

* 把字符串類型的數組轉換成一個CSV行。(輸出CSV文件的時候用)

*/

public static String toCSVLine(String[] strArray) {

if (strArray == null) {

return "";

}

StringBuffer cvsLine = new StringBuffer();

for (int idx = 0; idx < strArray.length; idx++) {

String item = addQuote(strArray[idx]);

cvsLine.append(item);

if (strArray.length - 1 != idx) {

cvsLine.append(',');

}

}

return cvsLine.toString();

}

/**

* 字符串類型的List轉換成一個CSV行。(輸出CSV文件的時候用)

*/

public static String toCSVLine(ArrayList strArrList) {

if (strArrList == null) {

return "";

}

String[] strArray = new String[strArrList.size()];

for (int idx = 0; idx < strArrList.size(); idx++) {

strArray[idx] = (String) strArrList.get(idx);

}

return toCSVLine(strArray);

}

// ==========以下是內部使用的方法=============================

/**

*計算指定文字的個數。

*

* @param str 文字列

* @param c 文字

* @param start 開始位置

* @return 個數

*/

private int countChar(String str, char c, int start) {

int i = 0;

int index = str.indexOf(c, start);

return index == -1 ? i : countChar(str, c, index + 1) + 1;

}

/**

* 查詢下一個逗號的位置。

*

* @param source 文字列

* @param st 檢索開始位置

* @return 下一個逗號的位置。

*/

private static int nextComma(String source, int st) {

int maxPosition = source.length();

boolean inquote = false;

while (st < maxPosition) {

char ch = source.charAt(st);

if (!inquote && ch == ',') {

break;

} else if ('"' == ch) {

inquote = !inquote;

}

st++;

}

return st;

}

/**

* 取得下一個字符串

*/

private static String nextToken(String source, int st, int nextComma) {

StringBuffer strb = new StringBuffer();

int next = st;

while (next < nextComma) {

char ch = source.charAt(next++);

if (ch == '"') {

if ((st + 1 < next && next < nextComma) && (source.charAt(next) == '"')) {

strb.append(ch);

next++;

}

} else {

strb.append(ch);

}

}

return strb.toString();

}

/**

* 在字符串的外側加雙引號。如果該字符串的內部有雙引號的話,把"轉換成""。

*

* @param item 字符串

* @return 處理過的字符串

*/

private static String addQuote(String item) {

if (item == null || item.length() == 0) {

return "\"\"";

}

StringBuffer sb = new StringBuffer();

sb.append('"');

for (int idx = 0; idx < item.length(); idx++) {

char ch = item.charAt(idx);

if ('"' == ch) {

sb.append("\"\"");

} else {

sb.append(ch);

}

}

sb.append('"');

return sb.toString();

}

}

總結

以上是生活随笔為你收集整理的java 读取csv_Java读取CSV的常用方法 | 学步园的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。