- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我现在已经为此奋斗了大约 6 个小时。我遵循了 Dropbox 的“教程”(如果他们可以这样称呼,因为他们非常糟糕),玩过 DBRoulette 示例,并做了很多事情来让我的应用程序正常工作。
我的应用程序可以毫无问题地进行身份验证。但是我无法上传任何内容,尽管完全按照教程中的内容进行操作:
这是我的一小段代码(这是为了将创建的笔记保存在手机上,然后上传到 Dropbox):
saveBtn.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View view)
{
try
{
//Create the directory if it doesn't exist. If it does exist the next two line won't do anything.
File dropNotesDir = new File(Environment.getExternalStorageDirectory() + "/documents/AppData/Dropnotes/");
dropNotesDir.mkdirs();
//-----------------------------------------------------------------------------------------------
String wholeNoteString = noteBody.getText().toString();
//Now we create the title of the txt file. It will be the first line of the whole note. The name will get truncated to 32 characters
//if it's too long.
String noteTitle;
if(wholeNoteString.indexOf("\n") >= 0) //New line character found.
{
noteTitle = wholeNoteString.substring(0, wholeNoteString.indexOf("\n"));
if(noteTitle.length() >= 32)
{
noteTitle = wholeNoteString.substring(0, 32);
}
}
else
{
if(wholeNoteString.length() >= 32)
{
noteTitle = wholeNoteString.substring(0, 32);
}else
{
noteTitle = wholeNoteString;
}
}
if(extras.getString("file-mode").equals("modify"))
{
//We will need to delete the existing file if it does exist to save the new one.
File existing = new File(Environment.getExternalStorageDirectory() + "/documents/AppData/Dropnotes/" + extras.getString("noteTitle"));
existing.delete();
}
File newNote = new File(Environment.getExternalStorageDirectory() + "/documents/AppData/Dropnotes/" + noteTitle + ".txt");
PrintWriter newNoteWriter = new PrintWriter(new FileOutputStream(newNote));
newNoteWriter.print(noteBody.getText().toString());
newNoteWriter.close();
//TRYING TO UPLOAD TO DROPBOX HERE
File fileToUpload = new File(Environment.getExternalStorageDirectory() + "/documents/AppData/Dropnotes/" + noteTitle + ".txt");
FileInputStream file2Uis = new FileInputStream(fileToUpload);
Entry newEntry = mDBApi.putFile("/" + noteTitle + ".txt", file2Uis, fileToUpload.length(), null, null);
//END OF TRYING TO UPLOAD TO DROPBOX HERE
Toast.makeText(view.getContext(), "Saved successfully", Toast.LENGTH_SHORT).show();
finish();
} catch (FileNotFoundException e)
{
Toast.makeText(view.getContext(), "File not found: " + e.getMessage(), Toast.LENGTH_SHORT).show();
e.printStackTrace();
} catch(Exception e)
{
Toast.makeText(view.getContext(), "Some bizarre exception occured: " + e.getClass().toString(), Toast.LENGTH_SHORT).show();
e.printStackTrace();
}
}
});
它给了我一个 NetworkOnMainThreadException,我不知道为什么。我正在尝试按照标题为“上传文件”的部分进行操作 here .他们的代码 fragment 让我感到困惑的是,他们甚至没有试图捕捉我抛出的异常......
有什么帮助吗?我真的需要在下周五完成这项工作。
最佳答案
在Honeycomb SDK之前,允许在主线程进行网络操作。但是,对于 Honeycomb,它不再被允许并且 NetworkOnMainThreadException
如果在主/UI 线程中尝试网络操作,则抛出。
您需要在不同的线程中执行网络操作。你可以看看AsyncTask
实现相同的目标。
关于android - 尝试上传到 Dropbox : NetworkOnMainThreadException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10892858/
这个问题在这里已经有了答案: How can I fix 'android.os.NetworkOnMainThreadException'? (66 个回答) 关闭2年前。 我刚刚发现 Networ
这个问题在这里已经有了答案: How can I fix 'android.os.NetworkOnMainThreadException'? (65 个回答) 7年前关闭。 嗨,我正在尝试使用 an
这个问题已经有答案了: How can I fix 'android.os.NetworkOnMainThreadException'? (64 个回答) 已关闭 3 年前。 我在 Android 应
我的 Android 项目中有一个名为 EditTrip_Activity.java 的类/Activity ,并且我不断收到此 NetworkOnMainThreadException。我之前已经得
我试图从 MySQL 数据库获取产品的详细信息,但是当我编译代码时,即使我在调用 GetProductDetails 类来执行时将其用作 AsyncTask,也会收到 NetworkOnMainThr
这个问题已经有答案了: How can I fix 'android.os.NetworkOnMainThreadException'? (64 个回答) 已关闭 7 年前。 实际上,我尝试将图像文件
我想将视频(从图库中选择)上传到服务器(localhost-Wampserver 在我的计算机上运行 Apache 2.4.4)。从异常和搜索中,我发现网络操作不应该发生在UI运行的线程中。但我该怎么
我正在尝试将 Android 应用程序与 Twitter 连接,但我不知道这部分代码有什么问题: Thread thread = new Thread(){ @Override
为什么当我在 Android 4.0 版本中运行时,此错误通常出现在 listview 中,任何人都可以帮助我解决这个问题。我搜索了一些网站,发现像在 中使用 asynctask >url 我该如何实
在主线程上没有网络调用,但我仍然得到同样的错误:NetworkOnMainThreadException。 MainActivity.class: public class MainActivity
熟悉Android开发,习惯了在UIThread上进行网络调用时的NetworkOnMainThreadException异常。 但是在下面的情况下会抛出 IOException 而不会抛出 Netw
我了解到在 GUI 线程上不允许进行网络操作。对我来说还可以。但是为什么在 Dialog 按钮点击回调上使用这段代码仍然会产生 NetworkOnMainThreadException ? new T
我正在尝试使用套接字在 android 中编写一个服务器/客户端应用程序,并且我在 AsyncTask 中处理客户端套接字(服务器不是 android,只是普通的 java)。当我得到异常时我正在尝试
我已经通过所有 SO 的解决方案来解决 NetworkOnMainThreadException 包括 ASync 类 - 但仍然有问题 这是我的简单代码: ActivityMain 类: publi
这个问题已经有答案了: How can I fix 'android.os.NetworkOnMainThreadException'? (65 个回答) 已关闭 9 年前。 我开发了一个使用 and
我正在尝试通过启动 TCP 服务器来访问 android 网络。但是当我创建一个新线程时,要么 Thread t = new Thread(runnable); t.start(); 或FutureT
我尝试从 POST 请求中获取响应。问题是,尽管我正在使用 AsyncTask 进行网络通信,但有时我会得到 NetworkOnMainThreadException。这意味着有时我成功获得响应,有时
我按照此说明使用传感器模拟器在模拟器上调试我的应用程序: http://code.google.com/p/openintents/wiki/SensorSimulator#How_to_use_th
我在下面有一些代码: protected void testConnection(String url) { DefaultHttpClient httpclient = new Defaul
我的应用程序中有一些网络请求,每当调用网络相关代码时,我都会收到此异常。我已经把它们放在后台了: @Background protected void getBitmapFromURL
我是一名优秀的程序员,十分优秀!