Java终章| 网络开发

一、目的

愉快的结束Java的学习,然后步入安卓开发。大致了解整个网络的运营:web前端、移动端、服务器端。

二、知识点

1.开发介绍

默认端口:80

  • http://www.baidu.com
  • http://www.baidu.com/download?type=jpg&categ
  • c/s:customer / sever
  • 移动端:app
    1 Java、Kotlin——Android
    2 OC、Swift——IOS
  • 浏览器:IE 火狐
    1 HTML语言(H5-Html5):超文本的标记语言
    2 CSS让网友更美观
    3 JavaScript(js):脚本语言
  • 服务器端:提供数据存储和访问的接口 API
    API=Application Programming Interface
  • 如果需要将自己本地的数据提供给外部访问
    1 自己的电脑扮演的就是服务器端
    2 需要自己配置一个服务器 apache
    3 Windows: 必须自己搭建服务器:apache tomcat
    4 mac:sudo apachectl start/stop

2.HTML的简单使用

  • form提交登录表单
  • 使用服务器访问局域网数据
    将自己电脑的IP找出 组成:http:// (+ip) +.html只要访问者和自己是再同一个网络下,访问者就能打开该网页
  • 使用get方式提交数据
    注:详细可以查看菜鸟教程


打开结果,如:

3.Java部分

  • socket提交数据给服务器-失败
    public static void main(String[] args) throws IOException {
        使用socket简单的只写客户端,是不行的
        Socket socket = new Socket("10.129.2.205",800);

        //传递的数据
        String data ="user_name=Jack&user_password=123";

        //创建输出流
        PrintStream printStream = new PrintStream(socket.getOutputStream());
        printStream.println(data);

        //接收服务器端返回的结果
        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
        System.out.println(bufferedReader.readLine());
  • URL实现下载
//下载图片(数据) get不带参数
    public static void getImage() throws IOException {
        //URL
        URL url = new URL("http://10.129.2.205/1.jpeg");

        //获取于服务器连接的对象
        URLConnection connection = url.openConnection();

        //获取输入流  读取下注的内容
        InputStream is = connection.getInputStream();

        //创建文件保存的位置
        FileOutputStream fos = new FileOutputStream("F:\\Androidstudio\\java2\\src\\main\\java\\day14\\1.jpeg");
        byte[] buf = new byte[1024];
        int len;
        while((len = is.read(buf)) != -1){
            fos.write(buf,0,len);
        }
    }

    //带参数的get请求
    public static void getParame() throws IOException {
            java.lang.String path = "http://10.129.2.205/qqq.php? " + "user_name=Jack&user_password=123&提交=提交";//因为这一步,所以不需要单独发送数据了
            URL url = new URL(path);

            //获取连接的对象  URLConnection封装了Socket
            URLConnection connection = url.openConnection();

            //设置请求方式
            HttpURLConnection httpURLConnection = (HttpURLConnection) connection;
            httpURLConnection.setRequestMethod("GET");
            //接收数据
//        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
//        System.out.println(bufferedReader.readLine());
            InputStream is = httpURLConnection.getInputStream();
            byte[] buf = new byte[1024];
            int len;
            while ((len = is.read(buf)) != -1) {
                System.out.println(new java.lang.String(buf, 0, len));
            }

    }
}
  • 使用post上传
//使用post上传简单数据(不是文件)
    public static  void  post() throws IOException {
        URL url = new URL("http://10.129.2.205/qqq.php? ");

        //2.获取connection对象
        //URLConnection
        //HttpURLConnection 自己需要设定请求的内容
        // 请求方式 上传的内容
        HttpURLConnection connection = (HttpURLConnection)url.openConnection();

        //3.设置请求方式为post
        connection.setRequestMethod("POST");
        //设置由输出流(需要上传)
        connection.setDoOutput(true);
        //设置由输入流 (需要下载)
        connection.setDoInput(true);

        //4.准备上传的数据
        String data = "user_name=jack&user_password=123";

        //上传文件
        //FileInputStream
        //5.开始上传 输出流对象
        OutputStream os = connection.getOutputStream();
        os.write(data.getBytes());
        os.flush();//写完了

        //6.接收服务端返回的数据
        InputStream is = connection.getInputStream();
        byte[] buf = new byte[1024];
        int len ;
        while ((len = is.read(buf))!=-1){
            System.out.println(new String(buf,0,len));
        }

    }

三、心得

今天真的好累好累,感觉走路都要睡着了一样。Java学到这里就算结束了,其中的知识点大都学到了,不过还不熟悉,自己要多多练习才能从菜鸟晋级啊!!!
爱因斯坦说过:“我们一来到世间,社会就在我们面前树起一个巨大的问号:你怎样度过自己的一生?”这是一个值得思考的问题,既然现在我们进入编程的领域,那就认证去学,决定自己未来的人生。

你可能感兴趣的:(Java终章| 网络开发)