@ -19,10 +19,10 @@ import com.fr.stable.ArrayUtils;
import com.fr.stable.CommonCodeUtils ;
import com.fr.stable.CommonCodeUtils ;
import com.fr.stable.StableUtils ;
import com.fr.stable.StableUtils ;
import com.fr.stable.StringUtils ;
import com.fr.stable.StringUtils ;
import com.fr.stable.os.OperatingSystem ;
import com.fr.start.ServerStarter ;
import com.fr.start.ServerStarter ;
import com.fr.workspace.WorkContext ;
import com.fr.workspace.WorkContext ;
import javax.swing.JOptionPane ;
import javax.swing.SwingUtilities ;
import javax.swing.SwingUtilities ;
import javax.swing.UIManager ;
import javax.swing.UIManager ;
import java.awt.Desktop ;
import java.awt.Desktop ;
@ -31,7 +31,6 @@ import java.io.BufferedReader;
import java.io.BufferedWriter ;
import java.io.BufferedWriter ;
import java.io.File ;
import java.io.File ;
import java.io.IOException ;
import java.io.IOException ;
import java.io.InputStream ;
import java.io.InputStreamReader ;
import java.io.InputStreamReader ;
import java.io.OutputStream ;
import java.io.OutputStream ;
import java.io.OutputStreamWriter ;
import java.io.OutputStreamWriter ;
@ -83,6 +82,7 @@ public class DesignUtils {
/ * *
/ * *
* 判断设计器端口是否被其他程序占用
* 判断设计器端口是否被其他程序占用
* 尝试去通信 , 无回应就是其他程序占用端口 , 否则需要继续判断是否为设计器进程未关闭
* 尝试去通信 , 无回应就是其他程序占用端口 , 否则需要继续判断是否为设计器进程未关闭
*
* @return
* @return
* /
* /
public static boolean isPortOccupied ( ) {
public static boolean isPortOccupied ( ) {
@ -189,10 +189,10 @@ public class DesignUtils {
DesignerEnvManager . getEnvManager ( ) . setCurrentEnv2Default ( ) ;
DesignerEnvManager . getEnvManager ( ) . setCurrentEnv2Default ( ) ;
ServerStarter . browserDemoURL ( ) ;
ServerStarter . browserDemoURL ( ) ;
} else if ( "check" . equals ( line ) ) {
} else if ( "check" . equals ( line ) ) {
clientSend ( new String [ ] { "response" } , socket ) ;
clientSend ( new String [ ] { "response" } , socket ) ;
} else if ( "end" . equals ( line ) ) {
} else if ( "end" . equals ( line ) ) {
DesignerExiter . getInstance ( ) . execute ( ) ; }
DesignerExiter . getInstance ( ) . execute ( ) ;
else if ( StringUtils . isNotEmpty ( line ) ) {
} else if ( StringUtils . isNotEmpty ( line ) ) {
File f = new File ( line ) ;
File f = new File ( line ) ;
String path = f . getAbsolutePath ( ) ;
String path = f . getAbsolutePath ( ) ;
@ -285,11 +285,18 @@ public class DesignUtils {
return key . startsWith ( "TextField." ) | | key . startsWith ( "PasswordField." ) ;
return key . startsWith ( "TextField." ) | | key . startsWith ( "PasswordField." ) ;
}
}
/ * *
* 获取当前系统语言下设计器用的默认字体
*
* @return 默认字体
* /
private static FRFont getCurrentLocaleFont ( ) {
private static FRFont getCurrentLocaleFont ( ) {
FRFont guiFRFont ;
FRFont guiFRFont ;
Locale defaultLocale = Locale . getDefault ( ) ;
Locale defaultLocale = Locale . getDefault ( ) ;
// JDK9 之后宋体在计算label中字母的空间上出现问题,暂时先用雅黑兼容,以后再统一字体
if ( isDisplaySimSun ( defaultLocale ) ) {
if ( StableUtils . getMajorJavaVersion ( ) > = 9 & & OperatingSystem . isWindows ( ) ) {
guiFRFont = getNamedFont ( "Microsoft YaHei" ) ;
} else if ( isDisplaySimSun ( defaultLocale ) ) {
guiFRFont = getNamedFont ( "SimSun" ) ;
guiFRFont = getNamedFont ( "SimSun" ) ;
} else {
} else {
guiFRFont = getNamedFont ( "Dialog" ) ;
guiFRFont = getNamedFont ( "Dialog" ) ;