?? utils.java
字號:
package chapter10;
/**
* Chapter 10 Utils
*/
public class Utils extends chapter9.Utils
{
/**
* Host name for our examples to use.
*/
static final String HOST = "localhost";
/**
* Port number for our examples to use.
*/
static final int PORT_NO = 9020;
/**
* Names and passwords for the key store entries we need.
*/
public static final String SERVER_NAME = "server";
public static final char[] SERVER_PASSWORD = "serverPassword".toCharArray();
public static final String CLIENT_NAME = "client";
public static final char[] CLIENT_PASSWORD = "clientPassword".toCharArray();
public static final String TRUST_STORE_NAME = "trustStore";
public static final char[] TRUST_STORE_PASSWORD = "trustPassword".toCharArray();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -