?? test.java
字號:
package org.hwmhere.email;
import org.hwmhere.util.math.BaseType;
import com.sun.jndi.cosnaming.IiopUrl.Address;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String receiver = "ab@localhost";
String user ;
String host ;
int i = receiver.indexOf('@');
// user = new String
user=receiver.substring(0,i);
host=receiver.substring(i+1);
System.out.print(user+"@"+host);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -