Android作為服務(wù)端(NanoHTTPD,實現(xiàn)上傳,返回文件功能)

部分轉(zhuǎn)載:https://blog.csdn.net/u013738666/article/details/104776840

  1. 導(dǎo)入依賴
implementation'org.nanohttpd:nanohttpd:2.2.0'

2.創(chuàng)建HttpServer繼承NanoHTTPD,收到請求會在serve方法獲取到參數(shù)信息

package com.swz.test;

import android.os.Environment;
import android.util.Log;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

import fi.iki.elonen.NanoHTTPD;

public class HttpService extends NanoHTTPD {

    public static final String TAG = HttpService.class.getSimpleName();

    public HttpService(int port) {
        super(port);
    }

    public HttpService(String hostname, int port) {
        super(hostname, port);
    }

    //重寫Serve方法饼煞,每次請求時會調(diào)用該方法
    @Override
    public Response serve(IHTTPSession session) {
        //通過session獲取請求的方式和類型
        Method method = session.getMethod();
        // 判斷post請求并且是上傳文件
        //將上傳數(shù)據(jù)解析到files集合并且存在NanoHTTPD緩存區(qū)
        Map<String, String> files = new HashMap<>();
        if (Method.POST.equals(method) || Method.PUT.equals(method)) {
            try {
                session.parseBody(files);
            } catch (IOException ioe) {
                return getResponse("Internal Error IO Exception: " + ioe.getMessage());
            } catch (ResponseException re) {
                return newFixedLengthResponse(re.getStatus(), MIME_PLAINTEXT, re.getMessage());
            }
        }
        //after the body parsed, by default nanoHTTPD will save the file
        // to cache and put it into params

        //2.將解析出來的文件根據(jù)需要保存在本地(或者上傳服務(wù)器)
        Map<String, String> params = session.getParms();
        for (Map.Entry<String, String> entry : params.entrySet()) {
            final String paramsKey = entry.getKey();
            //"file"是上傳文件參數(shù)的key值
            if (paramsKey.contains("file")) {
                final String tmpFilePath = files.get(paramsKey);
                //可以直接拿上傳的文件名保存痹束,也可以解析一下然后自己命名保存
                final String fileName = entry.getValue();
                final File tmpFile = new File(tmpFilePath);
                //targetFile是你要保存的file宇色,這里是保存在SD卡的根目錄(需要獲取文件讀寫權(quán)限)
                final File targetFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath(), fileName);
                Log.d("copy file now, source file path<>target file path", tmpFile.getAbsoluteFile()+"<>"+targetFile.getAbsoluteFile());
                //a copy file methoed just what you like
                copyFile(tmpFile, targetFile);

                //maybe you should put the follow code out
                return getResponse("Success");
            }
        }
        return response404(session, null);
    }

    //頁面不存在,或者文件不存在時
    public Response response404(IHTTPSession session, String url) {
        StringBuilder builder = new StringBuilder();
        builder.append("<!DOCTYPE html><html>body>");
        builder.append("404 Not Found" + url + " !");
        builder.append("</body></html>\n");
        return NanoHTTPD.newFixedLengthResponse(builder.toString());
    }

    //成功請求
    public Response getResponse(String success) {
        StringBuilder builder = new StringBuilder();
        builder.append("<!DOCTYPE html><html>body>");
        builder.append(success+ " !");
        builder.append("</body></html>\n");
        return NanoHTTPD.newFixedLengthResponse(builder.toString());
    }

    public void copyFile(File file, File targetfile) {
        FileInputStream fis = null;
        FileOutputStream fos = null;
        if (!file.exists()) {
            System.err.println("File not exists!");
            return;
        }
        try {
            fis = new FileInputStream(file);
            fos = new FileOutputStream(targetfile);
            byte[] buffer = new byte[1024];
            int len = 0;
            while ((len = fis.read(buffer)) != -1) {
                fos.write(buffer, 0, len);
                fos.flush();
            }
        } catch (FileNotFoundException ex) {
            Logger.getLogger(HttpService.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IOException ex) {
            Logger.getLogger(HttpService.class.getName()).log(Level.SEVERE, null, ex);
        } finally {
            try {
                if (fis != null) {

                    fis.close();
                }
                if (fos != null) {
                    fos.close();
                }
            } catch (IOException ex) {
                Logger.getLogger(HttpService.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }

}

3.開啟服務(wù)

public class MainActivity extends Activity {

          public void onCreate(Bundle savedInstanceState) {
              super.onCreate(savedInstanceState);
              requestWindowFeature(Window.FEATURE_NO_TITLE);
              setContentView(R.layout.main);
              //保存文件需要獲取讀寫權(quán)限
              requestPermissions();
              initHttpService();
          }

            private void initHttpService() {
                  //端口號可以自定義
                 HttpService http = new HttpService(9988);
                 try {
                    http.start();
                    Toast.makeText(this, "服務(wù)啟動完成", Toast.LENGTH_SHORT).show();
                    //  啟動完成后根據(jù)IP地址就可以訪問到數(shù)據(jù)了
                    String localIpAddress = NetWorkUtils.getLocalIpAddress(MainActivity.this);
                    Log.d("localIpAddress:", "服務(wù)啟動完成");
                    Log.d("localIpAddress:", localIpAddress);
                } catch (IOException e) {
                    e.printStackTrace();
                    //System.out.println("服務(wù)啟動錯誤");
                    Toast.makeText(this, "服務(wù)啟動錯誤", Toast.LENGTH_SHORT).show();
                }

            }

            private void requestPermissions() {
                try {
                    ActivityCompat.requestPermissions(this, new String[]{
                          Manifest.permission.WRITE_EXTERNAL_STORAGE,Manifest.permission.READ_EXTERNAL_STORAGE
                    }, 0x0010);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }

    /**
     * 獲取當(dāng)前ip地址
     *
     * @param context
     * @return
     */
    public String getLocalIpAddress(Context context) {
        try {

            WifiManager wifiManager = (WifiManager) context
                    .getSystemService(Context.WIFI_SERVICE);
            WifiInfo wifiInfo = wifiManager.getConnectionInfo();
            int i = wifiInfo.getIpAddress();
            return int2ip(i);
        } catch (Exception ex) {
            return " 獲取IP出錯施禾!請保證是WIFI,或者請重新打開網(wǎng)絡(luò)!\n" + ex.getMessage();
        }
        // return null;
    }

    /**
     * 將ip的整數(shù)形式轉(zhuǎn)換成ip形式
     *
     * @param ipInt
     * @return
     */
    public String int2ip(int ipInt) {
        StringBuilder sb = new StringBuilder();
        sb.append(ipInt & 0xFF).append(".");
        sb.append((ipInt >> 8) & 0xFF).append(".");
        sb.append((ipInt >> 16) & 0xFF).append(".");
        sb.append((ipInt >> 24) & 0xFF);
        return sb.toString();
    }


}

4.在清單文件添加網(wǎng)絡(luò)和文件讀寫權(quán)限

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

下面是如何返回文件

//成功請求
    public Response getResponseFile(String fileName) {
        String filePath = Environment.getExternalStorageDirectory().getAbsolutePath()+ "/msc/" + fileName;
        try {
            InputStream fileInputStream = new FileInputStream(filePath);
            //mimeType 是下載文件的類型脚线,可以百度找一下你返回文件的類型寫法
            //        '.a' : 'application/octet-stream',
            //        '.avi' : 'video/x-msvideo',
            //        '.bat' : 'text/plain',
            //        '.wav' : 'audio/x-wav',
            //        '.bin' : 'application/octet-stream',
            //        '.bmp' : 'image/x-ms-bmp',
            //        '.c' : 'text/plain',
            return NanoHTTPD.newFixedLengthResponse(Response.Status.OK,"audio/x-wav",fileInputStream,fileInputStream.available());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return response404();
        } catch (IOException e) {
            e.printStackTrace();
            return response404();
        }
    }

NetWorkUtils代碼

public class NetWorkUtils {

    /**
     * 將ip的整數(shù)形式轉(zhuǎn)換成ip形式
     *
     * @param ipInt
     * @return
     */
    public static String int2ip(int ipInt) {
        StringBuilder sb = new StringBuilder();
        sb.append(ipInt & 0xFF).append(".");
        sb.append((ipInt >> 8) & 0xFF).append(".");
        sb.append((ipInt >> 16) & 0xFF).append(".");
        sb.append((ipInt >> 24) & 0xFF);
        return sb.toString();
    }

    /**
     * 獲取當(dāng)前ip地址
     *
     * @param context
     * @return
     */
    public static String getLocalIpAddress(Context context) {
        try {

            WifiManager wifiManager = (WifiManager) context
                    .getSystemService(Context.WIFI_SERVICE);
            WifiInfo wifiInfo = wifiManager.getConnectionInfo();
            int i = wifiInfo.getIpAddress();
            return int2ip(i);
        } catch (Exception ex) {
            return " 獲取IP出錯!請保證是WIFI,或者請重新打開網(wǎng)絡(luò)!\n" + ex.getMessage();
        }
        // return null;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市弥搞,隨后出現(xiàn)的幾起案子邮绿,更是在濱河造成了極大的恐慌,老刑警劉巖攀例,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件船逮,死亡現(xiàn)場離奇詭異,居然都是意外死亡粤铭,警方通過查閱死者的電腦和手機(jī)挖胃,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來梆惯,“玉大人酱鸭,你說我怎么就攤上這事《饴穑” “怎么了凹髓?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長职烧。 經(jīng)常有香客問我扁誓,道長防泵,這世上最難降的妖魔是什么蚀之? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮捷泞,結(jié)果婚禮上足删,老公的妹妹穿的比我還像新娘。我一直安慰自己锁右,他們只是感情好失受,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布讶泰。 她就那樣靜靜地躺著,像睡著了一般拂到。 火紅的嫁衣襯著肌膚如雪痪署。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天兄旬,我揣著相機(jī)與錄音狼犯,去河邊找鬼。 笑死领铐,一個胖子當(dāng)著我的面吹牛悯森,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播绪撵,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼瓢姻,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了音诈?” 一聲冷哼從身側(cè)響起幻碱,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎细溅,沒想到半個月后收班,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡谒兄,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年摔桦,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片承疲。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡邻耕,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出燕鸽,到底是詐尸還是另有隱情兄世,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布啊研,位于F島的核電站御滩,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏党远。R本人自食惡果不足惜削解,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望沟娱。 院中可真熱鬧氛驮,春花似錦、人聲如沸济似。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蓖扑,卻和暖如春唉铜,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背律杠。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工打毛, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人俩功。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓幻枉,卻偏偏與公主長得像,于是被迫代替她去往敵國和親诡蜓。 傳聞我的和親對象是個殘疾皇子熬甫,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容