给你分享一个我一直用的java推送吧。
import import import import import import
public class Post {
public static class Main {
public static void main(String[] args) {
String url = "这里写你的推送接口";//接口调用地址
String[] param = {
"链接",//这里写你要推送的链接,用英文状态下的逗号隔开
"链接"
};
String JSon = Post(url, param);//执行推送方法
("结果是" + json); //打印推送结果
}
public static String Post(String PostUrl, String[] Parameters) {
if(null == PostUrl || null == Parameters || ==0){
return null;
}
String result="";
PrintWriter out=null;
BufferedReader in=null;
try {
//建立URL之间的连接
URLConnection conn=new URL(PostUrl).openConnection();
//设置通用的请求属性
("Host","");
("User-Agent", "curl/");
("Content-Length", "83");
("Content-Type", "text/plain");
//发送POST请求必须设置如下两行
(true);
(true);
//获取conn对应的输出流
out=new PrintWriter(());
//发送请求参数
String param = "";
for(String s : Parameters){
param += s+"\n";
}
(());
//进行输出流的缓冲
();
//通过BufferedReader输入流来读取Url的响应
in=new BufferedReader(new InputStreamReader(()));
String line;
while((line=())!= null){
result += line;
}
} catch (Exception e) {
("发送post请求出现异常!"+e);
();
} finally{
try{
if(out != null){
();
}
if(in!= null){
();
}
}catch(IOException ex){
();
}
}
return result;
}
}
}
有主动推送插件
一直在用,有个插件,发布信息直接推送