Browse Source

update

master
Fangjie Hu 8 years ago
parent
commit
0cd719303f
  1. 6
      designer_base/src/com/fr/design/extra/pre4plugin/PhantomJs4VanChartPlugin.java

6
designer_base/src/com/fr/design/extra/pre4plugin/PhantomJs4VanChartPlugin.java

@ -31,7 +31,7 @@ import javax.swing.*;
public class PhantomJs4VanChartPlugin implements ActionListener, PreEnv4Plugin { public class PhantomJs4VanChartPlugin implements ActionListener, PreEnv4Plugin {
private static final String PHANTOM_PATH = SiteCenter.getInstance().acquireUrlByKind("plugin.phantomjs"); private static final String ID = "plugin.phantomjs";
//链接服务器的客户端 //链接服务器的客户端
private HttpClient httpClient; private HttpClient httpClient;
//已读文件字节数 //已读文件字节数
@ -119,7 +119,7 @@ public class PhantomJs4VanChartPlugin implements ActionListener, PreEnv4Plugin {
} }
private void connectToServer(){ private void connectToServer(){
httpClient = new HttpClient(PHANTOM_PATH); httpClient = new HttpClient(SiteCenter.getInstance().acquireUrlByKind(ID));
if (httpClient.getResponseCode() == HttpURLConnection.HTTP_OK) { if (httpClient.getResponseCode() == HttpURLConnection.HTTP_OK) {
totalSize = httpClient.getContentLength(); totalSize = httpClient.getContentLength();
}else { }else {
@ -128,7 +128,7 @@ public class PhantomJs4VanChartPlugin implements ActionListener, PreEnv4Plugin {
} }
private int getFileLength(){ private int getFileLength(){
httpClient = new HttpClient(PHANTOM_PATH); httpClient = new HttpClient(SiteCenter.getInstance().acquireUrlByKind(ID));
if (httpClient.getResponseCode() == HttpURLConnection.HTTP_OK) { if (httpClient.getResponseCode() == HttpURLConnection.HTTP_OK) {
return httpClient.getContentLength(); return httpClient.getContentLength();
} }

Loading…
Cancel
Save