Java启动openoffice服务后拒绝连接
世界只因有你
世界只因有你 2017-07-03 11:43:16
0
1
1012

手动启动是没有问题的,但是如果我用代码启动服务后,报connection refused错误

public static String soffice_host = "127.0.0.1";
public static String soffice_port = "8100";
public static Process pro = null;

String commands = "cmd.exe /C C:\Program Files (x86)\OpenOffice4\program\startOpenoffice.bat";
System.out.println(commands);
pro = Runtime.getRuntime().exec(commands);    
connection = new SocketOpenOfficeConnection(soffice_host,Integer.parseInt(soffice_port));
System.out.println("获得连接"+connection);
connection.connect();

可以打印出连接connection的内容,但是之后连接的时候报错

starOpenoffice.bat内容:
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard

手动启动方法:
cd C:\Program Files (x86)\OpenOffice4\program
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard

世界只因有你
世界只因有你

全部回复(1)
漂亮男人

报错信息发出来

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!