導航:首頁 > IDC知識 > android文件上傳到伺服器

android文件上傳到伺服器

發布時間:2021-03-22 21:02:52

1、android開發:怎樣實現上傳文件到Tomcat伺服器上,求可執行的代碼,越簡潔越好

伺服器端寫個servlet,然後在doPost()方法里處理客戶端上傳的文件,大概代碼:

DiskFileItemFactory factory = new DiskFileItemFactory();
factory.setSizeThreshold(1024 * 1024); // 設置最多隻允許在內存中存儲的數據, 單位:位元組
factory.setRepository(cachepath); // 設置一旦文件大小超過設定值時數據存放的目錄

ServletFileUpload srvFileUpload = new ServletFileUpload(factory);
srvFileUpload.setSizeMax(1024 * 1024 * 1024); // 設置允許用戶上傳文件大小, 單位:位元組

// 開始讀取上傳信息
List fileItems = null;
try {
fileItems = srvFileUpload.parseRequest(request);
} catch (Exception e) {
System.out.println("獲取上傳信息。。。。。。失敗");
}

// 依次處理每個上傳的文件
Iterator iter = fileItems.iterator();
while (iter.hasNext()) {
FileItem item = (FileItem) iter.next(); // 忽略其他不是文件域的所有表單信息
if (!item.isFormField()) {
// 取出文件域的所有表單信息
} else {
// 取出不是文件域的所有表單信息
}
}

2、android實現文件上傳的功能

我是這樣做的
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(Intent.createChooser(intent, "請選擇一個要上傳的文件"), 1);
然後選擇文件後調用
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
Uri uri = data.getData();
String url= uri.toString();


獲得路徑,根據路徑調用
public String convertCodeAndGetText(String str_filepath) {// 轉碼\
try {
File file1 = new File(str_filepath);
file_name = file1.getName();
FileInputStream in = new FileInputStream(file1);
byte[] buffer = new byte[(int) file1.length() + 100];
int length = in.read(buffer);
load = Base64.encodeToString(buffer, 0, length,
Base64.DEFAULT);
in.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

return load;
}
對文件進行編碼

3、android 如何把一個資料庫文件提交到伺服器上面去

json就和map的用法一樣,一個JSONObject json=new JSONObject();
json.put("username", username);
json.put("password",password);
用httppclient這個類傳過去,post請求的話代碼比較多就不寫了,我說下get請求比如你的web項目名字是ServletTest,並且你在項目里寫個servlet類名字叫test。那麼沒有綁定域名的情況下url地址應該是http : // +localhost:8080/ ServletTest/test?msg= ( json.toString)。注意括弧內要在代碼實現。 然後在伺服器端收的信息就是{「username」:username , "password": password}格式的數據了。在你的test類裡面doGet(HttpRequest request , HttpResponse respone){
String msg=request.getParameter("msg");//就能得到{「username」:username , "passwor。。。。
然後JSONObject serverjson=new JSONObject(msg);
String name= serverjson.getString("username");
String password=serverjson.getString("password");
這樣就是封裝發送解析的過程
}.

4、android怎樣上傳圖片到伺服器

伺服器servlet代碼
publicvoid doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

String temp=request.getSession().getServletContext().getRealPath("/")+"temp"; //臨時目錄
System.out.println("temp="+temp);
String loadpath=request.getSession().getServletContext().getRealPath("/")+"Image"; //上傳文件存放目錄
System.out.println("loadpath="+loadpath);
DiskFileUpload fu =new DiskFileUpload();
fu.setSizeMax(1*1024*1024); // 設置允許用戶上傳文件大小,單位:位元組
fu.setSizeThreshold(4096); // 設置最多隻允許在內存中存儲的數據,單位:位元組
fu.setRepositoryPath(temp); // 設置一旦文件大小超過getSizeThreshold()的值時數據存放在硬碟的目錄

//開始讀取上傳信息
int index=0;
List fileItems =null;

try {
fileItems = fu.parseRequest(request);
System.out.println("fileItems="+fileItems);
} catch (Exception e) {
e.printStackTrace();
}

Iterator iter = fileItems.iterator(); // 依次處理每個上傳的文件
while (iter.hasNext())
{
FileItem item = (FileItem)iter.next();// 忽略其他不是文件域的所有表單信息
if (!item.isFormField())
{
String name = item.getName();//獲取上傳文件名,包括路徑
name=name.substring(name.lastIndexOf("\\")+1);//從全路徑中提取文件名
long size = item.getSize();
if((name==null||name.equals("")) && size==0)
continue;
int point = name.indexOf(".");
name=(new Date()).getTime()+name.substring(point,name.length())+index;
index++;
File fNew=new File(loadpath, name);
try {
item.write(fNew);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
else//取出不是文件域的所有表單信息
{
String fieldvalue = item.getString();
//如果包含中文應寫為:(轉為UTF-8編碼)
//String fieldvalue = new String(item.getString().getBytes(),"UTF-8");
}
}
String text1="11";
response.sendRedirect("result.jsp?text1="+ text1);
}

android客戶端代碼
publicclass PhotoUpload extends Activity {
private String newName ="image.jpg";
private String uploadFile ="/sdcard/image.JPG";
private String actionUrl ="http://192.168.0.71:8086/HelloWord/myForm";
private TextView mText1;
private TextView mText2;
private Button mButton;
@Override
publicvoid onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.photo_upload);
mText1 = (TextView) findViewById(R.id.myText2);
//"文件路徑:\n"+
mText1.setText(uploadFile);
mText2 = (TextView) findViewById(R.id.myText3);
//"上傳網址:\n"+
mText2.setText(actionUrl);
/* 設置mButton的onClick事件處理 */
mButton = (Button) findViewById(R.id.myButton);
mButton.setOnClickListener(new View.OnClickListener()
{
publicvoid onClick(View v)
{
uploadFile();
}
});
}
/* 上傳文件至Server的方法 */
privatevoid uploadFile()
{
String end ="\r\n";
String twoHyphens ="--";
String boundary ="*****";
try
{
URL url =new URL(actionUrl);
HttpURLConnection con=(HttpURLConnection)url.openConnection();
/* 允許Input、Output,不使用Cache */
con.setDoInput(true);
con.setDoOutput(true);
con.setUseCaches(false);
/* 設置傳送的method=POST */
con.setRequestMethod("POST");
/* setRequestProperty */
con.setRequestProperty("Connection", "Keep-Alive");
con.setRequestProperty("Charset", "UTF-8");
con.setRequestProperty("Content-Type",
"multipart/form-data;boundary="+boundary);
/* 設置DataOutputStream */
DataOutputStream ds =
new DataOutputStream(con.getOutputStream());
ds.writeBytes(twoHyphens + boundary + end);
ds.writeBytes("Content-Disposition: form-data; "+
"name=\"file1\";filename=\""+
newName +"\""+ end);
ds.writeBytes(end);
/* 取得文件的FileInputStream */
FileInputStream fStream =new FileInputStream(uploadFile);
/* 設置每次寫入1024bytes */
int bufferSize =1024;
byte[] buffer =newbyte[bufferSize];
int length =-1;
/* 從文件讀取數據至緩沖區 */
while((length = fStream.read(buffer)) !=-1)
{
/* 將資料寫入DataOutputStream中 */
ds.write(buffer, 0, length);
}
ds.writeBytes(end);
ds.writeBytes(twoHyphens + boundary + twoHyphens + end);
/* close streams */
fStream.close();
ds.flush();
/* 取得Response內容 */
InputStream is = con.getInputStream();
int ch;
StringBuffer b =new StringBuffer();
while( ( ch = is.read() ) !=-1 )
{
b.append( (char)ch );
}
/* 將Response顯示於Dialog */
showDialog("上傳成功"+b.toString().trim());
/* 關閉DataOutputStream */
ds.close();
}
catch(Exception e)
{
showDialog("上傳失敗"+e);
}
}
/* 顯示Dialog的method */
privatevoid showDialog(String mess)
{
new AlertDialog.Builder(PhotoUpload.this).setTitle("Message")
.setMessage(mess)
.setNegativeButton("確定",new DialogInterface.OnClickListener()
{
publicvoid onClick(DialogInterface dialog, int which)
{
}
})
.show();
}
}

5、怎麼實現使用Android Studio實現文件上傳到伺服器和從伺服器下載文件?

一些變數的定義:
//需要將下面的IP改為伺服器端IP
private String txtUrl = "http://192.168.1.46:8080/AppServer/SynTxtDataServlet" ;
private String url = "http://192.168.1.46:8080/AppServer/SynDataServlet" ;
private String uploadUrl = "http://192.168.1.46:8080/AppServer/UploadFileServlet" ;
private String fileUrl = "http://192.168.1.46:8080/AppServer/file.jpg" ;
private String txtFileUrl = "http://192.168.1.46:8080/AppServer/txtFile.txt" ;

NetTool類,實現功能
public class NetTool {
private static final int TIMEOUT = 10000 ; // 10秒
/**
* 傳送文本,例如Json,xml等
*/
public static String sendTxt( String urlPath, String txt, String encoding)
throws Exception {
byte[] sendData = txt.getBytes();
URL url = new URL(urlPath);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod( "POST" );
conn.setConnectTimeout(TIMEOUT);
// 如果通過post提交數據,必須設置允許對外輸出數據
conn.setDoOutput( true );
conn.setRequestProperty( "Content-Type" , "text/xml" );
conn.setRequestProperty( "Charset" , encoding);
conn.setRequestProperty( "Content-Length" , String
.valueOf(sendData.length));
OutputStream outStream = conn.getOutputStream();
outStream.write(sendData);
outStream.flush();
outStream.close();
if (conn.getResponseCode() == 200 ) {
// 獲得伺服器響應的數據
BufferedReader in = new BufferedReader( new InputStreamReader(conn
.getInputStream(), encoding));
// 數據
String retData = null ;
String responseData = "" ;
while ((retData = in .readLine()) != null ) {
responseData += retData;
}
in .close();
return responseData;
}
return "sendText error!" ;
}

6、安卓關於上傳文件到伺服器,該怎麼處理

如果是圖片,一般我們採用將圖片轉換為base64編碼的字元串,然後向伺服器post,伺服器接收後,再解碼base64字元串為圖片保存,從而實現上傳。貌似從Android上上傳圖片以外的其它文件的需求也比較小吧?

7、Android 上傳圖片到伺服器

final Map<String, String> params = new HashMap<String, String>();
params.put("send_userId", String.valueOf(id));
params.put("send_email", address);
params.put("send_name", name);
params.put("receive_email", emails);

final Map<String, File> files = new HashMap<String, File>();
files.put("uploadfile", file);

final String request = UploadUtil.post(requestURL, params, files);

8、android 視頻文件上傳到伺服器

android端:使用httpclient的multipart post提交數據到伺服器端;

伺服器端:普通解析上傳即可,與普通web開發處理上傳相同。

9、android中數據上傳到伺服器怎麼實現

伺服器端寫個servlet,然後在doPost()方法里處理客戶端上傳的文件,大概代碼:DiskFileItemFactory factory = new DiskFileItemFactory();factory.setSizeThreshold(1024 * 1024); // 設置最多隻允許在內存中存儲的數據, 單位:位元組factory.setRepository(cachepath); // 設置一旦文件大小超過設定值時數據存放的目錄 ServletFileUpload srvFileUpload = new ServletFileUpload(factory);srvFileUpload.setSizeMax(1024 * 1024 * 1024); // 設置允許用戶上傳文件大小, 單位:位元組// 開始讀取上傳信息List fileItems = null;try { fileItems = srvFileUpload.parseRequest(request);} catch (Exception e) { System.out.println("獲取上傳信息。。。。。。失敗");}// 依次處理每個上傳的文件Iterator iter = fileItems.iterator(); while (iter.hasNext()) { FileItem item = (FileItem) iter.next(); // 忽略其他不是文件域的所有表單信息 if (!item.isFormField()) { // 取出文件域的所有表單信息 } else { // 取出不是文件域的所有表單信息 }}

與android文件上傳到伺服器相關的知識