尝试将文件中的数据读入数组时,我得到array index out of bounds exception
。该文件有700行数据类似于:
"Vasculitis_PlasmaExchange", "#FCE883", "http://ncbi.nlm.nih.gov/pubmed/18646089", "(252, 232, 131)"
"Vasculitis_Prednisone", "#C5E384", "http://ncbi.nlm.nih.gov/pubmed/19588365", "(197, 227, 132)"
我的代码是:
static{
COLOR_CODES = new ArrayList<String[]>();
try{
FileReader fr = new FileReader("Crayon.properties");
BufferedReader br = new BufferedReader(fr);
String line;
while ( (line = br.readLine()) != null) {
COLOR_CODES.add(new String[]{line});
}
br.close();
fr.close();
}catch (Exception e){
throw new IllegalStateException("Couldn't load array file");
}
}
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException,
IOException
{
JSONArray fullColorArray;
String query = request.getParameter("q");
try {
int count = 0;
if (query.equals(m_lastQuery)) {
fullColorArray = m_lastResults;
count = m_lastResults.length();
} else {
m_lastQuery = query;
fullColorArray = new JSONArray();
for (String[] colorCode : COLOR_CODES) {
String colorName = colorCode[0];
String lowerColor = colorName.toLowerCase();
int has = lowerColor.indexOf(query.toLowerCase());
if (!query.isEmpty() && (query.equals("*") || has >= 0)) {
JSONObject color = new JSONObject();
color.put("DisplayName", colorName);
color.put("Value", colorCode[1]); // <-------- ArrayIndexOutOfBoundsException
color.put("Description", colorCode[2]);
color.put("RGB", colorCode[3]);
fullColorArray.put(color);
count++;
}
}
m_lastResults = fullColorArray;
}
的NullPointerException:
INTERNAL_SERVER_ERROR
RequestURI = / multivaluesuggestboxexample / colors
请帮忙。
上午Mohan Rao答案 0 :(得分:4)
我想你想要这样的东西:
while ( (line = br.readLine()) != null)
COLOR_CODES.add(line.split(","));
答案 1 :(得分:1)
您没有指定ArrayIndexOutOfBounds异常发生的位置 - 我假设该位置不在上面的代码中。
为什么要构造数组的ArrayList?你知道吗
COLOR_CODES.add(new String[]{line});
向ArrayList添加一个数组;数组本身包含一个单独的元素,即刚刚读取的行。
可能是你想做像
这样的事情COLOR_CODES.add(line.split('insert_your_split_regex_here'));
答案 2 :(得分:1)
根据您的分隔符将行拆分为String[]
。
答案 3 :(得分:0)
我不认为代码可能会给出异常。
catch
会把它变成一个不同的例外,你不会在堆栈跟踪中看到任何原始异常的痕迹(如果有的话)。我认为你会发现它被其他一些代码抛出。除非包含其他代码和堆栈跟踪,否则我认为我们无法帮助您。 (更好的是,提供SSCCE ...以便我们可以重现错误。)