if (DetectConnection.checkInternetConnection(MainActivity.this))
{
try
{
FileInputStream fis = new FileInputStream(myInternalFile);
DataInputStream in = new DataInputStream(fis);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//0-19
int i=0;
int internal_entries=0;
Toast.makeText(MainActivity.this,"Start reading", Toast.LENGTH_LONG).show();
while ((strLine = br.readLine()) != null )
{
Log.i("index" , Integer.toString(i));
Log.i("read_line" , strLine.toString());
//Data.array_data[i]=strLine;
Data.array_data[i]=strLine;
Log.i("element_in_array",Data.array_data[i].toString());
if(i==19) //submit after collecting 0-19 results
{
Thread t = new Thread(new Runnable()
{
@Override
public void run()
{
postData();
}
});
t.start();
i=-1;
internal_entries++;
Toast.makeText(MainActivity.this,"Submitted entry "+ internal_entries, Toast.LENGTH_LONG).show();
for(int j=0; j<=19; j++)
{
Data.array_data[j]=null;
}
}
Log.i("what?",Data.array_data[0].toString());
i++;
}
Toast.makeText(MainActivity.this,"Done Reading.", Toast.LENGTH_LONG).show();
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
Toast.makeText(MainActivity.this,"Bye.", Toast.LENGTH_LONG).show();
}
该程序假设读取文件并将数据存储在数组中。文件中的每个后续行对应于索引中的以下元素。在文件中读取20行后,该数组将提交给Google表单。然后数组被删除并继续读取下一组20行。
这是nullpointerexception
错误。因此,当我尝试提交数组时,一个元素是null
。为什么会出错? Thread
部分似乎有问题我的数组被声明为:
public static String[] array_data = new String[20];
在Data
班。
public void postData()
{
//HttpClient httpClient = new DefaultHttpClient();
//13 questions
//12 indices
//22 questions
//21 indices
String fullUrl = GoogleFormInfo.Google_array[0];
HttpRequest mReq = new HttpRequest();
Log.i("first index of array",Data.array_data[0].toString());
String col1 = Data.array_data[0];
String col2 = Data.array_data[1];
String col3 = Data.array_data[2];
String col4 = Data.array_data[3];
String col5 = Data.array_data[4];
String col6 = Data.array_data[5];
String col7 = Data.array_data[6];
String col8 = Data.array_data[7];
String col9 = Data.array_data[8];
String col10 = Data.array_data[9];
String col11 = Data.array_data[10];
String col12 = Data.array_data[11];
String col13 = Data.array_data[12];
String col14 = Data.array_data[13];
String col15 = Data.array_data[14];
String col16 = Data.array_data[15];
String col17 = Data.array_data[16];
String col18 = Data.array_data[17];
String col19 = Data.array_data[18];
String col20 = Data.array_data[19];
Log.i("google!",GoogleFormInfo.Google_array[1].toString());
Log.i("google!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",URLEncoder.encode(col1).toString());
String data = GoogleFormInfo.Google_array[1] + URLEncoder.encode(col1) + "&" +
GoogleFormInfo.Google_array[2] + URLEncoder.encode(col2) + "&" +
GoogleFormInfo.Google_array[3] + URLEncoder.encode(col3)+ "&" +
GoogleFormInfo.Google_array[4] + URLEncoder.encode(col4)+ "&" +
GoogleFormInfo.Google_array[5] + URLEncoder.encode(col5)+ "&" +
GoogleFormInfo.Google_array[6] + URLEncoder.encode(col6)+ "&" +
GoogleFormInfo.Google_array[7] + URLEncoder.encode(col7)+ "&" +
GoogleFormInfo.Google_array[8] + URLEncoder.encode(col8)+ "&" +
GoogleFormInfo.Google_array[9] + URLEncoder.encode(col9)+ "&" +
GoogleFormInfo.Google_array[10]+ URLEncoder.encode(col10)+ "&" +
GoogleFormInfo.Google_array[11]+ URLEncoder.encode(col11)+ "&" +
GoogleFormInfo.Google_array[12]+ URLEncoder.encode(col12)+ "&" +
GoogleFormInfo.Google_array[13]+ URLEncoder.encode(col13)+ "&" +
GoogleFormInfo.Google_array[14]+ URLEncoder.encode(col14)+ "&" +
GoogleFormInfo.Google_array[15]+ URLEncoder.encode(col15)+ "&" +
GoogleFormInfo.Google_array[16]+ URLEncoder.encode(col16)+ "&" +
GoogleFormInfo.Google_array[17]+ URLEncoder.encode(col17)+ "&" +
GoogleFormInfo.Google_array[18]+ URLEncoder.encode(col18)+ "&" +
GoogleFormInfo.Google_array[19]+ URLEncoder.encode(col19)+ "&" +
GoogleFormInfo.Google_array[20]+ URLEncoder.encode(col20);
String response = mReq.sendPost(fullUrl, data);
//Log.i(myTag, response);
}
请注意:
Log.i("first index of array",Data.array_data[0].toString());
没有打印出来。
答案 0 :(得分:0)
线程t
使用此代码调用postData()
和原始线程为空的静态 array_data
:
for(int j=0; j<=19; j++)
{
Data.array_data[j]=null;
}
线程t
正在与原始帖子共享此array_data
。如果你打算这样做,你必须为postData()
提供它自己的副本(最好是不可变的)。
为什么呢?因为线程不以任何特定顺序行事。您可能认为t
应该在您被取消之前完成,但这不是保证。事实上,不保证这是线程的全部要点。你很幸运,当你测试它时你就可以解决这个问题。
您需要通过使其静态来停止共享array_data。而是为每次读取创建一个新实例并将其传递给线程t
。这样,一旦它被创建,你可以将它视为线程t
的副本,并且永远不会再写入它。副本应该是不可变的,因此没有线程可以更改它,因此可以随时安全地阅读。
您不能使数组不可变,但您可以将数据推送到ArrayList中并将其传递给您的线程。 SO已经有一篇关于尝试使数组不可变的帖子,所以我只想指出:
Is there any way to make an ordinary array immutable in Java?
如果你只是谈论字符串,你可以逃脱你一直在做的事情,因为String对象已经是不可变的。但是一系列字符串不是。
传递不可变副本将在某种程度上起作用,但是当您准备好以更强大的方式解决此问题时,请查看observer pattern。
答案 1 :(得分:0)
试试这段代码:
Thread t = new Thread(new Runnable()
{
@Override
public void run()
{
postData(Data.array_data);
}
});
t.start();
在您的Data类中,postData方法是:
public void postData(String arrayData[])
{
...
这样做可以避免静态数组出现问题