JAVA³£Ó÷½·¨
01¡¢ÈÿؼþµÃµ½½¹µã
ÓÃ.requestFocus();¿ÉÒÔ»ñµÃ¿Ø¼þ½¹µã¡£
nextFocus()Ôò¿É½øÈëÏÂÒ»¸ö½¹µã¡£
02¡¢½«StringÀàÐÍתΪintÀàÐÍ
Integer.parseInt(String);
03¡¢½«IntegerÀàÐÍתΪStringÀàÐÍ
String.valueOf(Integer);
Ïà¹ØÎĵµ£º
¶ÔÏó¾ßÓÐ״̬,ÐÐΪ,±êʶ.¶ÔÏóµÄÎå¸ö»ù±¾ÌØÐÔ:
ÍòÎï½Ô¶ÔÏó,³éÈ¡´ýÇó½âÎÊÌâµÄÈκθÅÄ¹¹¼þ,½«Æä±íʾΪ³ÌÐòÖеĶÔÏó
³ÌÐòÊǶÔÏóµÄ¼¯ºÏ,ËûÃÇͨ¹ý·¢ËÍÏûÏ¢À´¸æÖª±Ë´ËËùÒª×öµÄ
ÿ¸ö¶ÔÏó¶¼ÓÐ×Ô¼ºµÄÓÉÆäËû¶ÔÏóËù¹¹³ÉµÄ´æ´¢,´´½¨°üº¬ËùÓжÔÏóµÄ°üµ ......
StringÀàûÓÐÌṩÐÞ¸ÄÒ»¸öÒÑ´æÔÚµÄ×Ö·û´®ÖеÄijһ¸ö×Ö·ûµÄ·½·¨£¬ÀýÈ磺String greeting="Hello";Èç¹ûÏë°Ñgreeting±ä³É"Help!"£¬²»ÄÜÖ±½Ó°ÑgreetingµÄ×îºóһλ±ä³É'p'ºÍ'!'£¬¶øÊDZ£ÁôÐèÒªµÄ×Ö·û´®£¬½«Ìæ»»µÄ×Ö·û´®Í¨¹ý"+"Á¬½ÓÔÚÒ»Æð¡£
greeting=greeting.su ......
Ò»¡¢±ÜÃâÔÚÑ»·Ìõ¼þÖÐʹÓø´ÔÓ±í´ïʽ
ÔÚ²»×ö±àÒëÓÅ»¯µÄÇé¿öÏ£¬ÔÚÑ»·ÖУ¬Ñ»·Ìõ¼þ»á±»·´¸´¼ÆË㣬Èç¹û²»Ê¹Óø´ÔÓ±í´ïʽ£¬¶øÊ¹Ñ»·Ìõ¼þÖµ²»±äµÄ»°£¬³ÌÐò½«»áÔËÐеĸü¿ì¡£
Àý×Ó£º
import java.util.Vector;
class CEL {
void method (Vector vector) {
......
·¢ËÍ email ÐèÒª email.jar activation.jar
-----------------------------------------------
package tao.email;
import java.util.Date;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.PasswordAuthentication;
i ......
Executing a CommandSee also e90 Reading Output from a Command.
try {
// Execute a command without arguments
String command = "ls";
Process child = Runtime.getRuntime().exec(command);
// Execute a command with an argument
command = "ls /tmp"; ......