scripting in java, 2007
... gluing existing software components together; in short, anywhere the strict syntax and constraints introduced by system-programming languages were getting in the way 6SCRIPTING IN JAVA Scripting ... make scripting useful. Before I start to discuss the application of scripting in the Java world, I summarize some of the theory behind scripting in general and its use in inf...
Ngày tải lên: 20/03/2014, 15:40
... (Hibernate, Spring, Ajax…). • Sử dụng các Interceptor. • Tích hợp Inversion of Control. Trang 29 MVC Architecture & Struts Framework in J2EE (Java) 10 /2007 Phần VI: ... Framework in J2EE (Java) 10 /2007 Success.jsp <%@ page language="java" pageEncoding="ISO-8859-1"%> <% String path = request.getContextPath(); String...
Ngày tải lên: 23/11/2012, 13:46
... Framework in J2EE (Java) 10 /2007 } public String execute() throws Exception{ System.out.println("execute() in Employee Action"); return SUCCESS; } public String input() ... private String birthday; private String city; private String email; private String history; public String getBirthday() { return birthday; } public void setBirthday(Str...
Ngày tải lên: 27/04/2013, 10:41
MVC Architecture & Struts Framework In Java(J2EE)
... Framework in J2EE (Java) 10 /2007 } public String execute() throws Exception{ System.out.println("execute() in Employee Action"); return SUCCESS; } public String input() ... private String birthday; private String city; private String email; private String history; public String getBirthday() { return birthday; } public void setBirthday(Str...
Ngày tải lên: 27/04/2013, 15:35
Object Orientation in Java
... one thing, and one thing only! This will force us to start thinking in an object way. Inheritance and Polymorphism One of the great things about an OO programming language is the concept of inheritance. ... test this feature, called late binding in Java.) ■ Tip Keep in mind that this is just an introduction to Java. I recommend you read Bruce Eckel’s Thinking in Java for a good explan...
Ngày tải lên: 05/10/2013, 10:20
XML programming in Java
... Petrarchan) "Shakespearean"> <!ELEMENT text (line,line,line,line, line,line,line,line, line,line,line,line, line,line) > <!ELEMENT author (last-name,first-name,nationality, year-of-birth?,year-of-death?) ... (getTextFromLine( theLines.item(j)). compareTo(getTextFromLine( theLines.item(j+1))) > 0) theLines.item(j). getParentNode().insertBefore( theLines.item(j+1), theL...
Ngày tải lên: 22/10/2013, 15:15
Software architecture design pattern in java (giaotrinhchinh)
... Data Account isValid():boolean save():boolean getFirstName():String getLastName():String firstName:String lastName:String Address isValid():boolean save():boolean getAddress():String getState():String address:String city:String state:String CreditCard isValid():String save():String getCardType():String getCardNumber():String getCardExpDate():String cardType:String cardNumber:String cardExpDat...
Ngày tải lên: 07/12/2013, 11:57
Thinking in Java
... javac. Thinking in Java, 3 rd Edition, Beta Bruce Eckel, President, MindView, Inc. Planet PDF brings you the Portable Document Format (PDF) version of Thinking in Java. Planet ... static void main(String[] args) { System.out.println(test(10, 5)); System.out.println(test(5, 10)); System.out.println(test(5, 5)); monitor.expect(new String[] { 158 Thinking...
Ngày tải lên: 10/12/2013, 14:44
Thinking In Java
... byte b = -1; print(Integer.toBinaryString(b)); b >>>= 10; print(Integer.toBinaryString(b)); b = -1; print(Integer.toBinaryString(b)); print(Integer.toBinaryString(b>>>10)); ... printBinaryInt("j", j); printBinaryInt("i & j", i & j); printBinaryInt("i | j", i | j); printBinaryInt("i ^ j", i ^ j); printBinar...
Ngày tải lên: 27/12/2013, 17:00