随笔分类 - Nginx
摘要:server { listen 80; server_name localhost; client_max_body_size 1024M; location / { root e:wwwroot; //思路:通过/将所有的请求,转发给root处理 index index.html; } } 一.n
阅读全文
摘要:创建Get请求 HttpGet httpGet = new HttpGet(url+param); 设置请求头信息 HttpGet httpGet = new HttpGet(url+param); httpGet.setHeader("Token",token); httpGet.setHeade
阅读全文