我有一个asynctask,它使用channel将文本文件下载到本地文件。
public void actionPerformed(ActionEvent e) {
if( e.getSource() instanceof JRadioButton){
String selectedRadioName = ((JRadioButton) e.getSource()).getName();
JOptionPane.showMessageDialog( null, selectedRadioName );
}
我得到一个致命的运行时异常,这会导致程序在开始时崩溃:
class getUrlsClass extends AsyncTask<String, Integer, File>{
@Override
protected File doInBackground(String... params) {
URLConnection uc;
File urlFiles= new File(getApplicationContext().getFilesDir(), "urls");
try {
URL url = new URL(params[0]);
uc = url.openConnection();
uc.setUseCaches(false);
ReadableByteChannel rbc = Channels.newChannel(uc.getInputStream());
FileOutputStream fos = new FileOutputStream(urlFiles);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
}
该任务有什么问题?
答案 0 :(得分:2)
例外原因是:
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
因为参数count
不能大于Integer.MAX_VALUE
。这导致了这个特殊的例外!
在FileChannelImpl
类文件中找到它:
if (position < 0 || count < 0 || count > Integer.MAX_VALUE) {
throw new IllegalArgumentException("position=" + position + " count=" + count);
}
希望它有所帮助! :)