代码片段
// 使用POST方法提交数据,必须大写
conn.setRequestMethod("POST")
// 需要输出流
conn.setDoOutput(true)
// 需要输入流
conn.setDoInput(true)
// 连接超时,10秒
conn.setConnectTimeout(10 * 1000)
// 读取超时,10秒
conn.setReadTimeout(10 * 1000)
// 打开输出流,写入数据
out = conn.getOutputStream()
out.write(data)
out.flush()
// 以上
conn.connect()
if (conn.getResponseCode() == 200) {
in = conn.getInputStream()
// TODO 读取数据
// 参考
int contentLength = conn.getContentLength()
ByteArrayOutputStream buf = new ByteArrayOutputStream(
contentLength >0 ? contentLength : 1024)
byte[] buffer = new byte[1024]
while ((contentLength = in.read(buffer)) != -1) {
buf.write(buffer, 0, contentLength)
}
// 可选
buf.flush()
return buf.toByteArray()
}
} catch (MalformedURLException e) {
e.printStackTrace()
} catch (IOException e) {
e.printStackTrace()
} finally {
if (out != null) {
try {
out.close()
} catch (IOException e) {
e.printStackTrace()
}
}
if (in != null) {
try {
in.close()
} catch (IOException e) {
e.printStackTrace()
}
}
if (conn != null) {
conn.disconnect()
}
// 错误的写法
// try {
// in.close()
// out.close()
// } catch (IOException e) {
// // TODO Auto-generated catch block
// e.printStackTrace()
// }
}
//尽量不要返回null 避免空指针异常
return new byte[0]
}
服务器在getpost里面接收可以转为btye数组,然后在转为文件
是的,可以在备份录里面找回拓展
想查看iCloud中的备忘录备份,需要用另一台苹果设备登录iCloud账号进行查看,但是要保证,备忘录的开关处于打开状态,对于备份来说,iPhone、iPad 和 iPod touch 备份只包含您的设备上储存的信息和设置,而不包含已储存到 iCloud 中的信息,比如备忘录等。所以如果您在iCloud中储存了备忘录信息,要想恢复的话,可以通过iTunes连接手机进行。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)