我很抱歉发布与我之前的问题类似的问题,但我无法弄清楚这一点。
我一直在使用我在这里找到的简单“ping”示例,只是想添加 ProgressBar,但没有运气。我真的不明白发生了什么事。
所以,这很好用:
protected void onPreExecute() {
sb = new StringBuilder();
mPOut = new PipedOutputStream();
try {
mPIn = new PipedInputStream(mPOut);
mReader = new LineNumberReader(new InputStreamReader(mPIn));
} catch (IOException e) {
cancel(true);
}
//myBar.setVisibility(View.VISIBLE); -> PROBLEM!!!
}
protected Object doInBackground(Object... arg0) {
try {
process = Runtime.getRuntime().exec("ping -c 4 " + ipadd);
InputStream in = process.getInputStream();
OutputStream out = process.getOutputStream();
byte[] buffer = new byte[1024];
int count;
while ((count = in.read(buffer)) != -1) {
mPOut.write(buffer, 0, count);
String bs= new String(buffer);
publishProgress();
}
in.close();
out.close();
mPOut.close();
mPIn.close();
} catch (IOException e) {
}
return null;
}
protected void onPostExecute(Object result) {
myBar.setVisibility(View.INVISIBLE);
tv.setText(sb);
System.out.println(sb);
}
我从 ping 得到输出,myBar 显然没有显示,因为它首先是不可见的。
如果我从我标记为问题的行中删除注释(将进度条可见性设置为可见),我根本不会从 ping 中得到任何输出。我似乎以某种方式弄乱了我的 I/O 或其他东西。ProgressBar 在最后显示和隐藏,但没有输出。
我真的无法弄清楚这一点,所以如果您有任何想法,我将非常感谢您的帮助。
谢谢!!!