|
|
|
@ -6,6 +6,7 @@ import com.fr.design.dialog.UIDialog;
|
|
|
|
|
import com.fr.design.gui.frpane.UITabbedPane; |
|
|
|
|
import com.fr.design.mainframe.DesignerContext; |
|
|
|
|
import com.fr.general.ComparatorUtils; |
|
|
|
|
import com.fr.general.GeneralContext; |
|
|
|
|
import com.fr.general.IOUtils; |
|
|
|
|
import com.fr.general.Inter; |
|
|
|
|
import com.fr.general.SiteCenter; |
|
|
|
@ -13,6 +14,7 @@ import com.fr.general.http.HttpClient;
|
|
|
|
|
import com.fr.json.JSONObject; |
|
|
|
|
import com.fr.plugin.PluginStoreConstants; |
|
|
|
|
import com.fr.plugin.PluginVerifyException; |
|
|
|
|
import com.fr.stable.EnvChangedListener; |
|
|
|
|
import com.fr.stable.StableUtils; |
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
@ -35,6 +37,15 @@ public class WebViewDlgHelper {
|
|
|
|
|
private static String installHome = FRContext.getCurrentEnv().getWebReportPath(); |
|
|
|
|
private static final int BYTES_NUM = 1024; |
|
|
|
|
|
|
|
|
|
static { |
|
|
|
|
GeneralContext.addEnvChangedListener(new EnvChangedListener() { |
|
|
|
|
@Override |
|
|
|
|
public void envChanged() { |
|
|
|
|
installHome = FRContext.getCurrentEnv().getWebReportPath(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void createPluginDialog() { |
|
|
|
|
if (StableUtils.getMajorJavaVersion() >= VERSION_8) { |
|
|
|
|
String relativePath = "/scripts/plugin.html"; |
|
|
|
@ -74,9 +85,8 @@ public class WebViewDlgHelper {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 检查script文件夹中的plugin.html文件 |
|
|
|
|
* |
|
|
|
|
*/ |
|
|
|
|
public static void checkAndCopyMainFile(String indexPath, String mainJsPath){ |
|
|
|
|
public static void checkAndCopyMainFile(String indexPath, String mainJsPath) { |
|
|
|
|
File file = new File(indexPath); |
|
|
|
|
if (!file.exists()) { |
|
|
|
|
copyMainFile(indexPath, mainJsPath); |
|
|
|
@ -85,9 +95,8 @@ public class WebViewDlgHelper {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 將script文件夹中的plugin.html文件复制到webreport下 |
|
|
|
|
* |
|
|
|
|
*/ |
|
|
|
|
public static void copyMainFile(String indexPath, String mainJsPath){ |
|
|
|
|
public static void copyMainFile(String indexPath, String mainJsPath) { |
|
|
|
|
try { |
|
|
|
|
File mainJsFile = new File(mainJsPath); |
|
|
|
|
int byteread = 0; |
|
|
|
|