我有一个带有imageview的活动,如果它是空的并且点击了,它应该从internet加载一个图像并将其保存到内部存储器。所以活动看起来是这样的:
public class PlaceCreate extends Activity {
Context context;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.create);
context = this;
ImageView img = (ImageView) findViewById(R.id.imageView);
img.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
EditText edit = (EditText)findViewById(R.id.editTextName);
Download(edit.getText().toString());
}
});
}
private boolean Download(String Name)
{
try
{
URL u = new URL("http://example.com/img.png");
HttpURLConnection c = (HttpURLConnection)u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
FileOutputStream f = context.openFileOutput(Name, Context.MODE_PRIVATE);
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while((len1 = in.read(buffer)) > 0 )
{
f.write(buffer, 0, len1);
}
f.close();
FileInputStream is = openFileInput(Name);
Bitmap bitmap = BitmapFactory.decodeStream(is);
is.close();
ImageView img = (ImageView) findViewById(R.id.imageViewPlan);
img.setImageBitmap(bitmap);
}
catch(IOException e)
{
return false;
}
return true;
}}
问题是我在
openFileOutput
行上得到了nullpointerexception。我发现了几个类似的问题,但所有的答案都暗示null
是一个缺失的上下文。由于在本例中它是一个活动,所以它显然有一个上下文(this
),并且它不为空。我试图通过openFileOutput
成员调用this
(隐含context
)。两种方法都失败了。另外,我试图将v.getContext()
作为一个附加参数从onClick
传递到Download
中,这个值不为空,但也产生了相同的异常。(如果重要,则请求的文件名是有效的文件名,例如“abc”。)有人能解释一下吗?
下面是堆栈的一个示例:
04-22 00:45:10.659: W/dalvikvm(330): threadid=1: thread exiting with uncaught exception (group=0x40015560)
04-22 00:45:10.909: E/AndroidRuntime(330): FATAL EXCEPTION: main
04-22 00:45:10.909: E/AndroidRuntime(330): java.lang.NullPointerException
04-22 00:45:10.909: E/AndroidRuntime(330): at android.app.ContextImpl.openFileOutput(ContextImpl.java:420)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:158)
04-22 00:45:10.909: E/AndroidRuntime(330): at com.example.scanner.PlaceCreate.Download(PlaceCreate.java:93)
04-22 00:45:10.909: E/AndroidRuntime(330): at com.example.scanner.PlaceCreate.access$0(PlaceCreate.java:84)
04-22 00:45:10.909: E/AndroidRuntime(330): at com.example.scanner.PlaceCreate$3.onClick(PlaceCreate.java:67)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.view.View.performClick(View.java:2485)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.view.View$PerformClick.run(View.java:9080)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.os.Handler.handleCallback(Handler.java:587)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.os.Handler.dispatchMessage(Handler.java:92)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.os.Looper.loop(Looper.java:123)
04-22 00:45:10.909: E/AndroidRuntime(330): at android.app.ActivityThread.main(ActivityThread.java:3683)
04-22 00:45:10.909: E/AndroidRuntime(330): at java.lang.reflect.Method.invokeNative(Native Method)
04-22 00:45:10.909: E/AndroidRuntime(330): at java.lang.reflect.Method.invoke(Method.java:507)
04-22 00:45:10.909: E/AndroidRuntime(330): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
04-22 00:45:10.909: E/AndroidRuntime(330): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
04-22 00:45:10.909: E/AndroidRuntime(330): at dalvik.system.NativeStart.main(Native Method)
这里还有更多的发现。根据堆栈,错误发生在
ContextImpl
文件中,我看到parent
局部变量在这个方法中是空的。代码如下:public FileOutputStream openFileOutput(String name, int mode)
throws FileNotFoundException {
final boolean append = (mode&MODE_APPEND) != 0;
File f = makeFilename(getFilesDir(), name);
try {
FileOutputStream fos = new FileOutputStream(f, append);
setFilePermissionsFromMode(f.getPath(), mode, 0);
return fos;
} catch (FileNotFoundException e) {
}
File parent = f.getParentFile();
parent.mkdir();
FileUtils.setPermissions(
parent.getPath(),
FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IXOTH,
-1, -1);
FileOutputStream fos = new FileOutputStream(f, append);
setFilePermissionsFromMode(f.getPath(), mode, 0);
return fos;
}
所以现在的问题是,如何确保对
f.getParentFile()
的调用不会返回null,以及为什么它会时不时地工作? 最佳答案
问题是我在openfileoutput行上得到了nullpointerexception。
您将在NullPointerException
的实现中获得openFileOutput()
。这就是为什么您需要为so提供堆栈跟踪,而不仅仅是提供异常名称。一行上的异常与一行触发的异常不同,特别是使用NullPointerException
时。
根据我对openFileOutput()
onContextImpl
的阅读,可以是:Name
是null
,或
你有一个非常奇怪的context
,或者
在您运行的android版本上还有其他一些可能的问题,在当前的openFileOutput()
实现中是看不到的。
我将从完全删除context
开始,因为您在Activity
中,不需要它。然后,输入一些Log
语句或设置断点来查看Name
是什么。
关于android - Activity 中openFileOutput处的NullPointerException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10259421/