java 如何向移动端提供接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 如何向移动端提供接口相关的知识,希望对你有一定的参考价值。

public static String sendPostUrl(String url, String param, String charset)

PrintWriter out = null;
BufferedReader in = null;
String result = "";
try
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置通用的请求属性
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new PrintWriter(conn.getOutputStream());
// 发送请求参数
out.print(param);
// flush输出流的缓冲
out.flush();
// 定义BufferedReader输入流来读取URL的响应
in = new BufferedReader(new InputStreamReader(conn.getInputStream(), charset));
String line;
while ((line = in.readLine()) != null)
result += line;

catch (Exception e)
System.out.println("发送 POST 请求出现异常!" + e);
e.printStackTrace();

// 使用finally块来关闭输出流、输入流
finally
try
if (out != null)
out.close();

if (in != null)
in.close();

catch (IOException ex)
ex.printStackTrace();


return result;
参考技术A 不用太刻意,所谓移动请求和普通的HTTP请求,其实没什么区别,所以正常开发即可,你可以用HTTP请求,也可以用WEBSERVICE 参考技术B 写一个servlet 或者 webservice 参考技术C 留邮箱,我发一个例子给你。 参考技术D 移动设备 ? 有公网、开放一个WEB服务,比较好

以上是关于java 如何向移动端提供接口的主要内容,如果未能解决你的问题,请参考以下文章

移动端自动化测试-AppiumApi接口详解

昆明java培训学校告诉你web网站优化可以如何实现?

移动端软键盘收起监听

Swagger简介:前后端分离生成接口文档的工具

移动端视频通话软件----sip----开源软件----阿冬专栏

学习笔记TF066:TensorFlow移动端应用,iOSAndroid系统实践