我正在尝试创建一个“联系人”活动,用户可以在EditText小部件上写一些内容然后按“发送”Parse.com将创建一个文件.txt并将其上传到我的解析类在线。唯一的问题是我实际上无法告诉脚本“读取”EditText中的内容。让我告诉你:
public void send(View view)//this is the onclick "send" button
{
byte[] data = "text to send".getBytes();// In this way parse.com will write "text to send" in the .txt file. Here's the problem: i can't figure out how to tell parse to take what's in the edit text widget and write it inside the .txt.
ParseFile file = new ParseFile("contact.txt", data);
file.saveInBackground();
ParseObject contacts = new ParseObject("Contacts");
contacts.put("contactName", "File");
contacts.put("contactResumeFile", file);
contacts.saveInBackground();
}
有什么想法?任何帮助都将被愉快地接受:)
答案 0 :(得分:1)
如果您不必将其作为.txt文件上传,则可以使用getText()。toString()然后使用saveInBackground()
上传它。