我有一个CSV文件,我正在读取文件中的元素
每一行都转换为List,其中一列是长数据,但Java在
中读取它2.01005E + 14格式,我无法将其转换为long,有没有办法只将该值转换为long?
这是CSV 201005300149580中的值。
代码,我的CSV类
package com.gta.moneyb.util;
import java.util.ArrayList;
import java.util.List;
public class CSV {
public static final char DEFAULT_SEP = ',';
/** Construct a CSV parser, with the default separator (`,'). */
public CSV() {
this(DEFAULT_SEP);
}
/** Construct a CSV parser with a given separator.
* @param sep The single char for the separator (not a list of
* separator characters)
*/
public CSV(char sep) {
fieldSep = sep;
}
/** The fields in the current String */
protected List<String> list = new ArrayList<String>();
/** the separator char for this parser */
protected char fieldSep;
/** parse: break the input String into fields
* @return java.util.Iterator containing each field
* from the original as a String, in order.
*/
public List<String> parse(String line)
{
StringBuffer sb = new StringBuffer();
list.clear(); // recycle to initial state
int i = 0;
if (line.length() == 0) {
list.add(line);
return list;
}
do {
sb.setLength(0);
if (i < line.length() && line.charAt(i) == '"')
i = advQuoted(line, sb, ++i); // skip quote
else
i = advPlain(line, sb, i);
list.add(sb.toString());
i++;
} while (i < line.length());
return list;
}
/** advQuoted: quoted field; return index of next separator */
protected int advQuoted(String s, StringBuffer sb, int i)
{
int j;
int len= s.length();
for (j=i; j<len; j++) {
if (s.charAt(j) == '"' && j+1 < len) {
if (s.charAt(j+1) == '"') {
j++; // skip escape char
} else if (s.charAt(j+1) == fieldSep) { //next delimeter
j++; // skip end quotes
break;
}
} else if (s.charAt(j) == '"' && j+1 == len) { // end quotes at end of line
break; //done
}
sb.append(s.charAt(j)); // regular character.
}
return j;
}
/** advPlain: unquoted field; return index of next separator */
protected int advPlain(String s, StringBuffer sb, int i)
{
int j;
j = s.indexOf(fieldSep, i); // look for separator
if (j == -1) { // none found
sb.append(s.substring(i));
return s.length();
} else {
sb.append(s.substring(i, j));
return j;
}
}
}
答案 0 :(得分:1)
要解析包含long的String,需要使用Long.parseLong()
String text = "201005300149580";
long number = Long.parseLong(text);
答案 1 :(得分:1)
我总是建议使用CSVReader来完成解析和创建csv文件的棘手任务。
答案 2 :(得分:0)
问题在于CSV文件,我在记事本中创建了一个带有上述值的CSV文件,它们很好用
答案 3 :(得分:0)
记忆中的长期应该是正确的。
打印时你看错了。
使用您喜欢的格式的DecimalFormat将其转换为String,您将看到它