摘要:
在jsp中的动作指令包括:include、 forward、 usebean、 getproperty、 setproperty、 plugin。
一、include指令
<jsp:include>标签表示包含一个静态的或者动态的文件。
语法:
<jsp:include page="path" flush="true&qu......
摘要:
使用javaserver faces(jsf)、spring framework和hibernate建立一个真实的web应用程序
内容概要
使用jsf建立一个真实的web应用程序不是没有意义的任务,这篇文章介绍了如何将jsf与sping framework和hibernate集成,并且给出了使用这些技术建立这个真实的web应用程序的最佳实践和设计指导
javaserver f......
J2MEMIDPCurrencyConverterTutorialforNetBeansIDE4.0
j2me midp currency converter tutorial for netbeans ide 4.0
【程序编程相关:
JavaMail快速入门】feedback http://www.netbeans.org/kb/articles/tutorial-currencyconverter-40.html
【推荐阅读:
纯jsp操作服务器上的文本文件[2]】
【扩展信息:
JSP与JavaMail之2(常用类介绍】feedback
the currency converter application you will build in this tutorial shows you how to:
start a j2me midp project
code a working j2me midp application, or midlet, using the ide
create project configurations to test the applications performance on two different device emulators
the currency converter application converts amounts from one currency to two others. you can choose to display three different currencies: euros, yen, or dollars. you can also enter a value in one currency to be converted into the other selected currencies.
there are three java source code files for the sample application:
convertermidlet.java. the code for the midlet class.
converter.java. a midp form that defines the main screen of the application as it appears on a mobile device.
currencies selector.java. a midp list that maintains the currencies and rates.
the first part of this tutorial will show you how to quickly install, run, and test the currency converter application, which is available as a sample project included in the ide. in the second part of the tutorial, you will create a new project and add code to create and test the application yourself.
this tutorial should take approximately an hour to complete.
requirements
you must have netbeans ide 4.0 and the netbeans mobility pack 4.0 installed before you can start j2me midp development. see the j2me midp development downloadpage for instructions on downloading and installing the complete environment.
installing and testing the sample currency converter project
in this first section, you will see how quickly you can install and run a sample project on two different emulator devices.
creating the project choose file > new project. under categories, select samples > mobile. under projects, select currency converter. click next.
the project name and location page sets the name and location of the project folder, and gives you the option of setting the project as the main project. click next to accept the d...
下一页 摘要:
getting started
a significant portion of application development involves a process of find, copy, paste, and integrate. this process can be greatly accelerated when you can find existing ......