JAVA wed ¿ª·¢ÖªÊ¶»Ø¹Ë
Eclipse ³£Óòå¼þµÄ°²×°
1£©Download plugin package
2) Exit Eclipse App
3) Unzip the plugin and copy it to ..\Eclipse\plugins
4) Restart Eclipse App
J2EE µÄ¿ªÔ´Æ½Ì¨
Eclipse+Tomcat+Lombez+MyEclipse
MyEclipse: MyEclipseEnterpriseWorkbeachInstall , °²×°µ½Ä¿Â¼Eclipse ϲſÉÒÔÕý³£Ê¹Óá£
Servlet £¨Java ·þÎñÆ÷¶ËС³ÌÐò£©
1) ÓÃjava±àд£¬ÓÉ·þÎñÆ÷¶Ëµ÷ÓúÍÖ´ÐУ¬Àà×ñÑServlet¹æ·¶¡£
2£©lifecycle£º ×°ÔØ->instant ->Init() ->¶ÔÏàÓ¦µÄrequestÌṩ·þÎñ ->destory()
3) Éæ¼°µÄÈí¼þ°ü£º
javax.servlet ºÍ javax.servlet.http
4£©Ò»¸öÀ࣬Ëĸö½Ó¿Ú
Ò»¸öÀࣺHttpservlet£¬ ´¦Àí²»Í¬µÄHttpÇëÇó £¨Get£¬ Post£¬ Put£©
doGet£¨£©
doPost£¨£©
Ëĸö½Ó¿Ú£º
HttpServletRequest£ºÌṩ´¦Àí¿Í»§ÇëÇóµÄ·½·¨¡£
String GetParameter£¨String name£©£»
String[] GetParameters( String name);
HttpServletReponse: ÌṩÒÔHtmlÐÎʽ°ÑÇëÇó·¢Ë͸ø¿Í»§µÄ·½·¨¡£
SetContentType();
SendRedirect();
HttpSession: ¼Ç¼µ±Ç°servletÖеÄÓû§»á»°¡£
PutValue£¨£© £¬ getValue£¨£©
 
Ïà¹ØÎĵµ£º
ÏÈÀ´Á˽âÒ»ÏÂÁ´±íģʽµÄÔÀí£º
Ê×ÏÈдһ¸öJavaBean£¬ÄÚÈÝÊÇÒªÌí¼ÓµÄÔªËØºÍ¸ÃÔªËØµÄ½Úµã¡£
public class NodeBean implements Serializable
{
private Object data; //ÔªËØ±¾Éí
private NodeBean next; //ÏÂÒ»¸ö½Úµã
&n ......
Òý£ºAndroid µÄAPIÖÐÓиö java.util.regex °ü£¬ÆäÖÐÓÐÁ½¸öÀ࣬һ¸ö½Ó¿ÚºÍÒ»¸öÒì³££º
Interfaces
MatchResult
Holds the results of a successful match of a Pattern against a given string.
Classes
Matcher
Provides a means of matching regular expressions against a given input,
finding occurrences of ......
O/R Mapping ÊÇ Object Relational Mapping£¨¶ÔÏó¹ØÏµÓ³É䣩µÄËõд¡£Í¨Ë׵㽲£¬¾ÍÊǽ«¶ÔÏóÓë¹ØÏµÊý¾Ý¿â°ó¶¨£¬ÓöÔÏóÀ´±íʾ¹ØÏµÊý¾Ý¡£ÔÚO/R MappingµÄÊÀ½çÀÓÐÁ½¸ö»ù±¾µÄÒ²ÊÇÖØÒªµÄ¶«¶«ÐèÒªÁ˽⣬¼´VO£¬PO¡£
¡¡¡¡VO£¬Öµ¶ÔÏó(Value Object)£¬PO£¬³Ö¾Ã¶ÔÏó(Persisent Object)£¬ËüÃÇÊÇÓÉÒ»×éÊôÐÔºÍÊôÐÔµÄgetºÍset·½·¨×é³É¡£´ ......
ÔÚÏÂÃæÕâ¸ö³ÌÐòÖÐString args[]Æðʲô×÷Óã¿ÎÒѧ¹ýC++£¬String args[]ÓëC++ÖеÄʲôÀàËÆ£¿Èç¹ûÊÇC++£¬ÏëÒªÊä³ö×Ö·û´®Ö»ÒªÔÚÏÂÃæÐ´cout<<"...."<<endl;¾Í¿ÉÒÔÁË,void main()ÖеÄÀ¨ºÅΪ¿Õ£¬¶øjavaÖÐΪʲôҪдString args[]ÄØ£¿
class Example{
public static void main(String args[]){
System.out.printl ......