??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲字幕成人中文在线观看,黄页网址大全在线播放,**毛片在线网站http://www.aygfsteel.com/honzeland/category/17080.htmlzh-cnFri, 12 Oct 2007 09:04:40 GMTFri, 12 Oct 2007 09:04:40 GMT60如何使用Log4jQ?/title><link>http://www.aygfsteel.com/honzeland/articles/133434.html</link><dc:creator>honzeland</dc:creator><author>honzeland</author><pubDate>Mon, 30 Jul 2007 13:13:00 GMT</pubDate><guid>http://www.aygfsteel.com/honzeland/articles/133434.html</guid><wfw:comment>http://www.aygfsteel.com/honzeland/comments/133434.html</wfw:comment><comments>http://www.aygfsteel.com/honzeland/articles/133434.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/honzeland/comments/commentRss/133434.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/honzeland/services/trackbacks/133434.html</trackback:ping><description><![CDATA[FromQhttp://www.aygfsteel.com/rickhunter/articles/28133.html<br /> <br /> <font size="2"> <strong>1?Log4j是什么?<br /> </strong>  Log4j可以帮助调试Q有时候debug是发挥不了作 用的Q和分析Q要下蝲和了解更详细的内容,q是讉K其官方网站吧Q?/font> <a > <font size="2">http://jakarta.apache.org/log4j</font> </a> <font size="2">?br /> <br /> <strong>2、Log4j的概?/strong><br />   <!--startfragment --> Log4j中有三个主要的组Ӟ它们分别?/font> <font size="2">Logger、Appender和LayoutQL<!--startfragment -->og4j 允许开发h员定义多个LoggerQ每个Logger拥有自己的名字,Logger之间通过名字来表明隶属关pR有一个LoggerUCؓRootQ它永远 存在Q且不能通过名字索或引用Q可以通过Logger.getRootLogger()Ҏ获得Q其它Logger通过 Logger.getLogger(String name)Ҏ?br />    Appender则是用来指明所有的log信息存放C么地方,Log4j中支持多UappenderQ如<!--startfragment --></font> <font size="3"> </font> <font size="2">console、files、GUI components、NT Event Loggers{,一个Logger可以拥有多个AppenderQ也是你既可以Log信息输出到屏q,同时存储C个文件中?br />    Layout的作用是控制Log信息的输出方式,也就是格式化输出的信息?br />    Log4j中将要输出的Log信息定义?U别,依次为DEBUG、INFO、WARN、ERROR和FATALQ当输出Ӟ只有U别高过配置中规定的 U别的信息才能真正的输出Q这样就很方便的来配|不同情况下要输出的内容Q而不需要更改代码,q点实在是方便啊?br /> <br /> <strong>3、Log4j的配|文?/strong><br />   虽然可以不用配置文gQ而在E序中实现配|,但这U方法在如今的系l开发中昄是不可取的,能采用配|文件的地方一定一定要用配|文件。Log4j支持? U格式的配置文gQXML格式和Java的property格式Q本人更喜欢后者,首先看一个简单的例子吧,如下Q?br /> <br /> </font> <font color="#614db3"> <font size="2">  log4j.rootLogger=debug, <strong>stdout, R</strong><br />   log4j.appender.<strong>stdout</strong>=org.apache.log4j.ConsoleAppender<br />   log4j.appender.stdout.layout=org.apache.log4j.PatternLayout<br /> <br />   # Pattern to output the caller's file name and line number.<br />   log4j.appender.stdout.layout.ConversionPattern=%5p [%t] <strong>(%F:%L)</strong> - %m%n<br /> <br />   log4j.appender.<strong>R</strong>=org.apache.log4j.RollingFileAppender<br />   log4j.appender.R.File=example.log<br />   log4j.appender.R.MaxFileSize=</font> <font size="2"> <strong>100KB<br /> </strong> <br />   # Keep one backup file<br />   log4j.appender.R.MaxBackupIndex=1<br /> <br />   log4j.appender.R.layout=org.apache.log4j.PatternLayout<br />   log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n         <br /> <br /> </font> <font color="#000000"> <font size="2">  首先Q是讄rootQ格式ؓ<!--startfragment --> log4j.rootLogger=[level],appenderName, ...Q其中level是讄需要输Z息的U别Q后面是appender的输出的目的圎ͼ<!--startfragment -->appenderName是指定日志信息输出到哪个地斏V您可以同时指定多个输出目的地?/font> <font size="2">配置日志信息输出目的地AppenderQ其语法?br /> </font> <font size="2">  log4j.appender.appenderName = fully.qualified.name.of.appender.class<br />   log4j.appender.appenderName.option1 = value1<br />   ...<br />   log4j.appender.appenderName.option = valueN</font> <br /> <font size="2">Log4j提供的appender有以下几U:<br />   org.apache.log4j.ConsoleAppenderQ控制台Q?br />   org.apache.log4j.FileAppenderQ文Ӟ<br />   org.apache.log4j.DailyRollingFileAppenderQ每天生一个日志文Ӟ<br />   org.apache.log4j.RollingFileAppenderQ文件大到达指定尺寸的时候生新文gQ?br />   org.apache.log4j.WriterAppenderQ将日志信息以流格式发送到L指定的地方)<br /> </font> </font> </font> <font color="#614db3"> <font color="#000000"> <font size="2">配置日志信息的格式(布局Q,其语法ؓQ?br /> </font> <font size="2">  log4j.appender.appenderName.layout = fully.qualified.name.of.layout.class<br />   log4j.appender.appenderName.layout.option1 = value1<br />   ....<br />   log4j.appender.appenderName.layout.option = valueN</font> <br /> <font size="2">Log4j提供的layout有以下几U:<br />   org.apache.log4j.HTMLLayoutQ以HTML表格形式布局Q,<br />   org.apache.log4j.PatternLayoutQ可以灵zd指定布局模式Q,<br />   org.apache.log4j.SimpleLayoutQ包含日志信息的U别和信息字W串Q,<br />   org.apache.log4j.TTCCLayoutQ包含日志生的旉、线E、类别等{信息) <br /> <br /> </font> </font> </font> <font color="#000000"> <span style="font-size: 10.5pt;"> <font size="2"> <span lang="EN-US">Log4J采用cMC语言中的printf函数的打印格式格式化日志信息Q打印参数如下: %m 输出代码中指定的消息<o:p></o:p></span> </font> </span> </font> <p> <font color="#000000"> <span style="font-size: 10.5pt;"> <font size="2">  </font> <span lang="EN-US"> <font size="2">%p 输出优先U,即DEBUGQINFOQWARNQERRORQFATAL <br /> %r 输出自应用启动到输出该log信息耗费的毫U数 <br /> %c 输出所属的cȝQ通常是所在类的全?<br /> %t 输出产生该日志事件的U程?<br /> %n 输出一个回车换行符QWindowsq_?#8220;\r\n”QUnixq_?#8220;\n” <br /> %d 输出日志旉点的日期或时_默认格式为ISO8601Q也可以在其后指定格式,比如Q?d{yyy MMM dd HH:mm:ss,SSS}Q输出类|</font> </span> </span> <st1:chsdate isrocdate="False" islunardate="False" day="18" month="10" year="2002"> <span style="font-size: 10.5pt;" lang="EN-US"> <font size="2">2002q?0?8?/font> </span> </st1:chsdate> <span style="font-size: 10.5pt;" lang="EN-US"> <font size="2"> 22Q?0Q?8Q?21 <br /> %l 输出日志事g的发生位|,包括cȝ名、发生的U程Q以及在代码中的行数。D例:Testlog4.main(TestLog4.java:10)</font> </span> </font> </p> <br /> <font color="#614db3"> <font color="#000000"> <font size="2"> <br /> <strong>4、Log4j在程序中的?/strong> </font> </font> </font> <font color="#614db3"> <font color="#000000"> <br /> </font> <font color="#a0a0a0"> <font color="#090909" size="2">  要在自己的程序中使用Log4jQ首先需要将commons-logging.jar和logging-log4j-1.2.9.jar导入到构\? 中。然后再log4j.properties攑ֈsrc根目录下。这样就可以在程序中使用log4j了。在cM使用log4jQ?/font> </font> </font> <font color="#614db3"> <font color="#a0a0a0"> <font color="#090909" size="2">首先声明一个静态变?/font> </font> </font> <font color="#614db3"> <font color="#a0a0a0"> <font color="#090909" size="2">Logger logger=Logger.getLog("classname")Q现在就可以使用了,用法如下Qlogger.debug("debug message")或者logger.info("info message")Q看下面一个小例子Q?/font> </font> </font> <font color="#614db3"> <font color="#a0a0a0"> <br /> </font> <br /> <font size="2">  import com.foo.Bar;<br />   import org.apache.log4j.Logger;<br />   import org.apache.log4j.PropertyConfigurator;<br />   public class MyApp {<br />     static Logger logger = Logger.getLogger(MyApp.class.getName());<br />     public static void main(String[] args) {<br />       // BasicConfigurator replaced with PropertyConfigurator.<br />       PropertyConfigurator.configure(args[0]);<br />       logger.info("Entering application.");<br />       Bar bar = new Bar();<br />       bar.doIt();<br />       logger.info("Exiting application.");<br />     }<br />   }<br /> <br /> <br /> <br /> </font></font> <div id="wmqeeuq" class="postTitle"> zz: http://www.aygfsteel.com/apple0668/archive/2007/10/11/152150.html<br /> <a id="viewpost1_TitleUrl" class="postTitle2" href="../../apple0668/archive/2007/10/11/152150.html">Log4配置</a><br /> </div> <p>一、常用输出格?/p> <p>%c   列出logger名字I间的全Uͼ如加上{<层数>}表示Z最内层v的指定层数的名字I间<br /> %X  按MDCQMapped Diagnostic Context,U程映射表)输出日志。通常用于多个客户端连接同一台服务器Q方便服务器区分是那个客L讉K留下来的日志?br /> %p  日志信息U别<br /> %d   %d{<日期格式>}:日志信息产生旉,使用ISO8601定义的日期格?br /> %C   日志信息所在地Q全限类名)<br /> %m   产生的日志具体信?br /> %n    输出日志信息换行<br /> %F 昄调用logger的源文g?br /> %l     输出日志事g的发生位|,包括cȝ名、发生的U程Q以及在代码中的行数<br /> %L    昄调用logger的代码行<br /> %M   昄调用logger的方法名<br /> %r     昄从程序启动时到记录该条日志时已经l过的毫U数<br /> %t     输出产生该日志事件的U程?br /> %% 昄一?br /> 二、log4j.properties<br /> </p> <p>#控制包中日志输出U别<br /> log4j.logger.org.apache.struts = debug</p> <p># 应用于控制台<br /> log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender<br /> log4j.appender.Threshold=DEBUG<br /> log4j.appender.CONSOLE.Target=System.out<br /> log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.CONSOLE.layout.ConversionPattern=[framework] %d - %-4r [%t] %-5p %c %x - %m%n<br /> #log4j.appender.CONSOLE.layout.ConversionPattern=[start]%d{DATE}[DATE]%n%p[PRIORITY]%n%x[NDC]%n%t[THREAD] n%c[CATEGORY]%n%m[MESSAGE]%n%n</p> <p>#应用于文?br /> log4j.appender.FILE=org.apache.log4j.FileAppender<br /> log4j.appender.FILE.File=file.log<br /> log4j.appender.FILE.Append=false<br /> log4j.appender.FILE.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.FILE.layout.ConversionPattern=[framework] %d - %-4r [%t] %-5p %c %x - %m%n<br /> # Use this layout for LogFactor 5 analysis</p> <p># 应用于文件回?br /> log4j.appender.ROLLING_FILE=org.apache.log4j.RollingFileAppender<br /> log4j.appender.ROLLING_FILE.Threshold=ERROR<br /> log4j.appender.ROLLING_FILE.File=rolling.log<br /> log4j.appender.ROLLING_FILE.Append=true<br /> log4j.appender.ROLLING_FILE.MaxFileSize=100KB<br /> log4j.appender.ROLLING_FILE.MaxBackupIndex=10<br /> log4j.appender.ROLLING_FILE.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.ROLLING_FILE.layout.ConversionPattern=[framework] %d - %-4r [%t] %-5p %c %x - %m%n</p> <p><br /> #应用于socket<br /> log4j.appender.SOCKET=org.apache.log4j.net.SocketAppender<br /> log4j.appender.SOCKET.RemoteHost=localhost<br /> log4j.appender.SOCKET.Port=5001<br /> log4j.appender.SOCKET.LocationInfo=true<br /> # Set up for Log Facter 5<br /> log4j.appender.SOCKET.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.SOCET.layout.ConversionPattern=[start]%d{DATE}[DATE]%n%p[PRIORITY]%n%x[NDC]%n%t[THREAD]%n%c[CATEGORY]%n%m[MESSAGE]%n%n</p> <p><br /> # Log Factor 5 Appender<br /> log4j.appender.LF5_APPENDER=org.apache.log4j.lf5.LF5Appender<br /> log4j.appender.LF5_APPENDER.MaxNumberOfRecords=2000</p> <p># 发送日志给邮g<br /> log4j.appender.MAIL=org.apache.log4j.net.SMTPAppender<br /> log4j.appender.MAIL.Threshold=FATAL<br /> log4j.appender.MAIL.BufferSize=10<br /> log4j.appender.MAIL.From=web@www.wuset.com<br /> log4j.appender.MAIL.SMTPHost=www.wusetu.com<br /> log4j.appender.MAIL.Subject=Log4J Message<br /> log4j.appender.MAIL.To=web@www.wusetu.com<br /> log4j.appender.MAIL.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.MAIL.layout.ConversionPattern=[framework] %d - %-4r [%t] %-5p %c %x - %m%n</p> <p># 用于数据?br /> log4j.appender.DATABASE=org.apache.log4j.jdbc.JDBCAppender<br /> log4j.appender.DATABASE.URL=jdbc:mysql://localhost:3306/test<br /> log4j.appender.DATABASE.driver=com.mysql.jdbc.Driver<br /> log4j.appender.DATABASE.user=root<br /> log4j.appender.DATABASE.password=<br /> log4j.appender.DATABASE.sql=INSERT INTO LOG4J (Message) VALUES ('[framework] %d - %-4r [%t] %-5p %c %x - %m%n')<br /> log4j.appender.DATABASE.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.DATABASE.layout.ConversionPattern=[framework] %d - %-4r [%t] %-5p %c %x - %m%n</p> <p>#每日回滚日志文g<br /> log4j.appender.A1=org.apache.log4j.DailyRollingFileAppender<br /> log4j.appender.A1.File=SampleMessages.log4j<br /> log4j.appender.A1.DatePattern=yyyyMMdd-HH'.log4j'<br /> log4j.appender.A1.layout=org.apache.log4j.xml.XMLLayout</p> <p>#自定义Appender<br /> log4j.appender.im = net.cybercorlin.util.logger.appender.IMAppender<br /> log4j.appender.im.host = mail.cybercorlin.net<br /> log4j.appender.im.username = username<br /> log4j.appender.im.password = password<br /> log4j.appender.im.recipient = corlin@cybercorlin.net<br /> log4j.appender.im.layout=org.apache.log4j.PatternLayout<br /> log4j.appender.im.layout.ConversionPattern =[framework] %d - %-4r [%t] %-5p %c %x - %m%n</p> <br /> <br /> <img src ="http://www.aygfsteel.com/honzeland/aggbug/133434.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/honzeland/" target="_blank">honzeland</a> 2007-07-30 21:13 <a href="http://www.aygfsteel.com/honzeland/articles/133434.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Mastering the Java CLASSPATH http://www.aygfsteel.com/honzeland/articles/96954.htmlhonzelandhonzelandWed, 31 Jan 2007 06:32:00 GMThttp://www.aygfsteel.com/honzeland/articles/96954.htmlhttp://www.aygfsteel.com/honzeland/comments/96954.htmlhttp://www.aygfsteel.com/honzeland/articles/96954.html#Feedback0http://www.aygfsteel.com/honzeland/comments/commentRss/96954.htmlhttp://www.aygfsteel.com/honzeland/services/trackbacks/96954.html from http://www.kevinboone.com/classpath.html

The significance of the class search path

An understanding of the class search path is important for all Java developers. However, the widespread use of integrated development tools has concealed the technicalities for so long that there is a widespread lack of comprehension, even among experienced developers. The problem is particularly acute with development of distributed applications, as the system which will run the application is likely to be configured rather differently from the one on which development takes place.

This article describes in detail how the Java compiler and the JVM use the class search path to locate classes when they are referenced by other Java code. It does this with reference to a very simple example, which uses two classes in the same package. We will see how various operations to compile these two classes succeed and fail, depending on the class path setting.

To make things absolutely clear, we will use only simple command-line tools to carry out the compile operations. Interactive development tools have their own ways of manipulating the class path, which vary from product to product.

There is no fundamental difference between the way that the Java compiler searches for classes, and the way that the JVM does it at run time. However, the compiler has the ability to compile classes from source code, where the JVM does not. In the examples below we will use the compiler, but similar issues apply at run time.

The example

This example has two trivial classes: com.web_tomorrow.CPTest1 and com.web_tomorrow.CPTest2, which are listed below.
package com.web_tomorrow;
public class CPTest1
{
public static void main(String[] args)
  {
  System.out.println ("Run CPTest1.main()");
  }
}

package com.web_tomorrow;
public class CPTest2
{
public static void main(String[] args)
  {
  System.out.println ("Run CPTest2.main()");
  CPTest1 cpt1 = new CPTest1();
  }
}
One of the most fundamental rules of Java code organization is that `package name = directory name'. We will begin by setting up a directory structure that matches the package assignment of these two classes. The classes are in a package com.web_tomorrow, so we must create the directory com/web_tomorrow to contain the source code.
[root]
  com
    web_tomorrow
      CPTest1.java
      CPTest2.java
In this document I will use the notation `[root]' to mean `whatever directory contains the structure described above', that is, the root of the directory layout. This will vary, of course, according to how you install the files.

Basic principles

Let's try to compile CPTest1.java on its own using the command-line javac program. To disable the class search path completely (so any existing setting does not interfere with the example), we can run javac with the option `-classpath ""'.

As a first attempt, let's change directory to the location of CPTest1.java, and try to compile it by specifying its name on the javac command line.

cd [root]/com/web_tomorrow
javac -classpath "" CPTest1.java
This operation succeeds, because the compiler is able to find CPTest1.java (it is in the working directory), and because CPTest1 does not reference any other classes. The output file, CPTest1.class ends up in the same directory as CPTest1.java because, again, you haven't given the compiler information to do anything else. So far so good. Now let's try the same thing with CPTest2. Still in the `web_tomorrow' directory, execute this command:
javac -classpath "" CPTest2.java
This operation should fail, even though the directory is the same as the previous step, and CPTest1 and CPTest2 are in the same package. The error message will be something like this:
PTest2.java:7: cannot resolve symbol
symbol  : class CPTest1  
location: class com.web_tomorrow.CPTest2
  CPTest1 cpt1 = new CPTest1();
  ^
The difference between this case and the previous, successful, one is that CPTest2 contains a reference to CPTest1:
  CPTest1 cpt1 = new CPTest1();
What is going on here? When the compiler encounters the reference to CP1Test here, it assumes that this is a class in the same package as CP2Test that is is currently compiling. This is a correct assumption. So the compiler needs to find com.web_tomorrow.CP1Test. But it has nowhere to look, as we have explicitly set the class search path to "" (i.e., nothing).

You might think this problem can be resolved by telling the compiler to look in the current directory. The standard symbol for `current directory' is a single period (.) in both Unix and Windows systems. So try something like this:

javac -classpath "." CPTest2.java
This fails in exactly the same way as the previous example. The problem now is that although CPTest1.java is in the current directory, the class that it implements is not just CPTest1, but com.web_tomorrow.CPTest1. The compiler will look for a directory com/web_tomorrowbelow the current directory. So, overall, it is looking for a Java source or class file in the directory [home]/com/web_tomorrow/com/web_tomorrow which, of course, does not exist.

To make this compile operation work, we need to make the class search path reference not the directory containing CPTest1, but a directory root from which CPTest1 can be located by the compiler following the standard Java `package name = directory name' rule. This should work, although it's rather ugly:

javac -classpath "../.." CPTest2.java
Before seeing how we can make this less ugly, consider this example (still in the same directory):
javac -classpath "" CPTest1.java CPTest2.java
This also works, even though the class path is empty. This is because the Java compiler will look for references between any source code explicitly listed on the command line. If there are many classes, all in the same directory, we can simplify this to:
javac -classpath "" *.java 
The `*.java' expands to a list of all the .java files in the current directory. This explains why compiling many files in one operation often succeeds where attempts to compile a single file fails.

A more convenient way to compile CPTest2 on its own is like this:

cd [root]
javac -classpath "." com/web_tomorrow/CPTest2.java
In this example we specify the full path to CPTest2.java, but include `.' in the -classpath option. Again, we aren't telling the compiler to look for files in the current directory, we are telling it to begin a class search from the current directory. Because the class we are looking for is com.web_tomorrow.CPTest1, the compiler will search in ./com/web_tomorrow (that is, the directory com/web_tomorrow below the current directory). This is exactly where CPTest1.java is located.

In fact, even though I only specified CPTest2 on the command line, this practice does in fact lead to the compilation of CPTest1 as well. The compiler finds the .java file in the right place, but it can't tell whether this Java source really implements the right class, so it has to compile it. But note that if we do this:

cd [root]
javac -classpath "." com/web_tomorrow/CPTest1.java
it does not cause a compilation of CPTest2.java, because the compiler does not need to know anything about CPTest2 to compile CPTest1.

.class files separate from .java files

The examples described so far, when successful, place the output .class files alongside the .java files from which they were generated. This is a simple scheme, and very widely used. However, many developers like to keep the source tree free of generated files, and must therefore tell the Java compiler to maintain separate directories for .class files. Let's see what impact this has on the class search path.

To begin we will need to delete any .class files lurking around after the previous examples. We will also contain a new directory classes to contain the generated .class files. The procedure at the command line would be something like this:

cd [root]
rm com/web_tomorrow/*.class
mkdir classes
Don't forget to swap the `/' characters for '\' if you are using a Windows system. The directory structure now looks like this.
[root]
  com
    web_tomorrow
      CPTest1.java
      CPTest2.java
  classes
Let's compile CPTest1.java, specifying classes as the destination directory (using the -d option):
cd [root]
javac -d classes -classpath "" com/web_tomorrow/CPTest1.java 
This should succeed, but you should notice that the .class files have not been placed into the classes directory at all. Instead, we have a new directory structure like this:
[root]
  com
    web_tomorrow
      CPTest1.java
      CPTest2.java
  classes
    com
      web_tomorrow
        CPTest1.class
What has happened is that the compiler has created a directory structure to match the package structure. It has done this to be helpful, as we shall see. When we come to compile CPTest2.java we have two choices. First, we can compile it as described above, allowing the compiler to compile CPTest1 as part of the process. Alternatively, we can compile it and use the -classpath option to refer to the compiler to the .class file generated in the previous step. This method is superior, as we don't have to repeat the compilation of CPTest1.
cd [root]
javac -d classes -classpath classes com/web_tomorrow/CPTest2.java 
By doing this, we end up with this directory structure.
[root]
  com
    web_tomorrow
      CPTest1.java
      CPTest2.java
  classes
    com
      web_tomorrow
      CPTest1.class
      CPTest2.class
Of course we could have compiled both .java files in the same command, and got the same result.

JARs on the classpath

The java compiler and run-time can search for classes not only in separate files, but also in `JAR' archives. A JAR file can maintain its own directory structure, and Java follows exactly the same rules as for searching in ordinary directories. Specifically, `directory name = package name'. Because a JAR is itself a directory, to include a JAR file in the class search path, the path must reference the JAR itself, not merely the directory that contains the JAR. This is a very common error. Suppose I have a JAR myclasses.jar in directory /myclasses. To have the Java compiler look for classes in this jar, we need to specify:
javac -classpath /myclasses/myclasses.jar ...
and not merely the directory myclasses.

Multiple class search directories

In the examples above, we have told javac to search in only one directory at a time. In practice, your class search path will contain numerous directories and JAR archives. The -classpath option to javac and java allows multiple entries to be specified, but notice that the syntax is slightly different for Unix and Windows systems.

On Unix, we would do this:

javac -classpath dir1:dir2:dir3 ...
whereas on Windows we have:
javac -classpath dir1;dir2;dir3 ...
The reason for the difference is that Windows uses the colon (:) character as part of a filename, so it can't be used as a filename separator. Naturally the directory separator character is different as well: forward slash (/) for Unix and backslash (\) for Windows.

System classpath

Rather than specifying class search path on the javac command line, we can make use of a `system' class path. This is the class path that will be used by both the Java compiler and the JVM in the absence of specific instructions to the contrary. In both Unix and Windows systems, this is done by setting an environment variable. For example, in Linux with the bash shell:
CLASSPATH=/myclasses/myclasses.jar;export CLASSPATH 
and in Windows:
set CLASSPATH=c:\myclasses\myclasses.jar
This procedure is fine for short-term changes to the system CLASSPATH, but if you want these changes to be persistent you will need to arrange this yourself. Details vary from system to system. On a Linux system, for example, I would put the commands in the file .bashrc in my home directory. On Windows 2000/NT there is a `Control Panel' page for this.

Setting the system CLASSPATH is a useful procedure if you have JARs full of classes that you use all the time. For example, if I am developing Enterprise JavaBean (EJB) applications using Sun's J2EE `Reference Implementation', all the EJB-related classes are in a JAR called `j2ee.jar' that comes with the distribution. I want this JAR on the class search path all the time. In addition, most people want to ensure that the current directory is on the search path, whatever the current directory happens to be. So in my .bashrc file I have this line:

CLASSPATH=/usr/j2ee/j2ee.jar:.;export CLASSPATH 
where the `.' indicates `current directory'.

It is easy to overlook that the -classpath option on the command line replaces the default, system class path; it does not add to it. So what should I do if I want to set the class path to include the default system classpath plus some other entries? I could simply use the -classpath option and list the default entries in addition to my extras. However, a better way is to reference the CLASSPATH environment variable. The syntax for this is different -- of course -- on Windows and Unix systems. On Unix:

javac -classpath $CLASSPATH:dir1:dir2 ...
where $CLASSPATH expands to the current setting of the CLASSPATH environment variable. On Windows:
javac -classpath %CLASSPATH%;dir1:dir2 ...
Finally, please note that if directories in your class search path have spaces in their names, you may have to use double-quotes on the command line to prevent the CLASSPATH being split up. For example:
javac -classpath "%CLASSPATH%";dir1:dir2 ...


//
//the article ended! the following is got from Sun Microsystem Document.






Setting the class path

Synopsis

The class path is the path that the Java runtime environment searches for classes and other resource files. The class search path (more commonly known by the shorter name, "class path") can be set using either the -classpath option when calling a JDK tool (the preferred method) or by setting the CLASSPATH environment variable. The -classpath option is preferred because you can set it individually for each application without affecting other applications and without other applications modifying its value.

C:>sdkTool-classpathclasspath1;classpath2...

-or-

C:> set CLASSPATH=classpath1;classpath2...

where:

sdkTool
A command-line tool, such as java, javac, javadoc, or apt. For a listing, see JDK Tools.
classpath1;classpath2
Class paths to the .jar, .zip or .class files. Each classpath should end with a filename or directory depending on what you are setting the class path to:
  • For a .jar or .zip file that contains .class files, the class path ends with the name of the .zip or .jar file.
  • For .class files in an unnamed package, the class path ends with the directory that contains the .class files.
  • For .class files in a named package, the class path ends with the directory that contains the "root" package (the first package in the full package name).

Multiple path entries are separated by semi-colons. With the set command, it's important to omit spaces from around the equals sign (=).

The default class path is the current directory. Setting the CLASSPATH variable or using the -classpath command-line option overrides that default, so if you want to include the current directory in the search path, you must include "." in the new settings.

Classpath entries that are neither directories nor archives (.zip or .jar files) nor * are ignored.

Description

The class path tells JDK tools and applications where to find third-party and user-defined classes -- that is, classes that are not Java extensions or part of the Java platform. The class path needs to find any classes you've compiled with the javac compiler -- its default is the current directory to conveniently enable those classes to be found.

The JDK, the JVM and other JDK tools find classes by searching the Java platform (bootstrap) classes, any extension classes, and the class path, in that order. (For details on the search strategy, see How Classes Are Found.) Class libraries for most applications will want to take advantage of the extensions mechanism. You only need to set the class path when you want to load a class that's (a) not in the current directory or in any of its subdirectories, and (b) not in a location specified by the extensions mechanism.

If you are upgrading from an older version of the JDK, your startup settings may include CLASSPATH settings that are no longer needed. You should remove any settings that are not application-specific, such as classes.zip. Some third-party applications that use the Java Virtual Machine may modify your CLASSPATH environment variable to include the libaries they use. Such settings can remain.

You can change the class path by using the JDK tools' -classpath option when you invoke the JVM or other JDK tools or by using the CLASSPATH environment variable. Using the -classpath option is preferred over setting CLASSPATH environment variable because you can set it individually for each application without affecting other applications and without other applications modifying its value.

Classes can be stored either in directories (folders) or in archive files. The Java platform classes are stored in rt.jar. For more details on archives and information on how the class path works, see Understanding the class path and package names near the end of this document.

Important Note: Some older versions of the JDK sofware included a <jdk-dir>/classes entry in the default class path. That directory exists for use by the JDK software, and should not be used for application classes. Application classes should be placed in a directory outside of the JDK directory hierarcy. That way, installing a new JDK does not force you to reinstall application classes. For compatibility with older versions, applications that use the <jdk-dir>/classes directory as a class library will run in the current version, but there is no guarantee that they will run in future versions.

Using the JDK tools' -classpath option

The JDK tools java, jdb, javac, and javah have a -classpath option which replaces the path or paths specified by the CLASSPATH environment variable while the tool runs. This is the recommended option for changing class path settings, because each application can have the class path it needs without interfering with any other application.

The runtime tool java has a -cp option, as well. This option is an abbreviation for -classpath.

For very special cases, both java and javac have options that let you change the path they use to find their own class libraries. The vast majority of users will never to need to use those options, however.

Using the CLASSPATH environment variable

In general, you will want to use the -classpath command-line option, as explained in the previous section. This section shows you how to set the CLASSPATH environment variable if you want to do that, or clear settings left over from a previous installation.

Setting CLASSPATH

The CLASSPATH environment variable is modified with the set command. The format is:

set CLASSPATH=path1;path2 ...

The paths should begin with the letter specifying the drive, for example, C:\. That way, the classes will still be found if you happen to switch to a different drive. (If the path entries start with backslash (\) and you are on drive D:, for example, then the classes will be expected on D:, rather thanC:.)

Clearing CLASSPATH

If your CLASSPATH environment variable has been set to a value that is not correct, or if your startup file or script is setting an incorrect path, you can unset CLASSPATH by using:

C:> set CLASSPATH=

This command unsets CLASSPATH for the current command prompt window only. You should also delete or modify your startup settings to ensure that you have the right CLASSPATH settings in future sessions.

Changing Startup Settings

If the CLASSPATH variable is set at system startup, the place to look for it depends on your operating system:
Operating SystemMethod
Windows 95 and 98Examine autoexec.bat for the set command.
Other (Windows NT, Windows 2000, ...)The CLASSPATH environment variable can be set using the System utility in the Control Panel.

Understanding class path wildcards

Class path entries can contain the basename wildcard character *, which is considered equivalent to specifying a list of all the files in the directory with the extension .jar or .JAR. For example, the class path entry foo/* specifies all JAR files in the directory named foo. A classpath entry consisting simply of * expands to a list of all the jar files in the current directory.

A class path entry that contains * will not match class files. To match both classes and JAR files in a single directory foo, use either foo;foo/* or foo/*;foo. The order chosen determines whether the classes and resources in foo are loaded before JAR files in foo, or vice versa.

Subdirectories are not searched recursively. For example, foo/* looks for JAR files only in foo, not in foo/bar, foo/baz, etc.

The order in which the JAR files in a directory are enumerated in the expanded class path is not specified and may vary from platform to platform and even from moment to moment on the same machine. A well-constructed application should not depend upon any particular order. If a specific order is required then the JAR files can be enumerated explicitly in the class path.

Expansion of wildcards is done early, prior to the invocation of a program's main method, rather than late, during the class-loading process itself. Each element of the input class path containing a wildcard is replaced by the (possibly empty) sequence of elements generated by enumerating the JAR files in the named directory. For example, if the directory foo contains a.jar, b.jar, and c.jar, then the class path foo/* is expanded into foo/a.jar;foo/b.jar;foo/c.jar, and that string would be the value of the system property java.class.path.

The CLASSPATH environment variable is not treated any differently from the -classpath (or -cp) command-line option. That is, wildcards are honored in all these cases. However, class path wildcards are not honored in the Class-Path jar-manifest header.

Understanding the class path and package names

Java classes are organized into packages which are mapped to directories in the file system. But, unlike the file system, whenever you specify a package name, you specify the whole package name -- never part of it. For example, the package name for java.awt.Button is always specified as java.awt.

For example, suppose you want the Java runtime to find a class named Cool.class in the package utility.myapp. If the path to that directory is C:\java\MyClasses\utility\myapp, you would set the class path so that it contains C:\java\MyClasses.

To run that app, you could use the following JVM command:

C:> java -classpath C:\java\MyClasses utility.myapp.Cool

When the app runs, the JVM uses the class path settings to find any other classes defined in the utility.myapp package that are used by the Cool class.

Note that the entire package name is specified in the command. It is not possible, for example, to set the class path so it contains C:\java\MyClasses\utility and use the command java myapp.Cool. The class would not be found.

(You may be wondering what defines the package name for a class. The answer is that the package name is part of the class and cannot be modified, except by recompiling the class.)

Note: An interesting consequence of the package specification mechanism is that files which are part of the same package may actually exist in different directories. The package name will be the same for each class, but the path to each file may start from a different directory in the class path.

Folders and archive files

When classes are stored in a directory (folder), like c:\java\MyClasses\utility\myapp, then the class path entry points to the directory that contains the first element of the package name. (in this case, C:\java\MyClasses, since the package name is utility.myapp.)

But when classes are stored in an archive file (a .zip or .jar file) the class path entry is the path to and including the .zip or .jar file. For example, to use a class library that is in a .jar file, the command would look something like this:

C:> java -classpath C:\java\MyClasses\myclasses.jar utility.myapp.Cool

Multiple specifications

To find class files in the directory C:\java\MyClasses as well as classes in C:\java\OtherClasses, you would set the class path to:

C:> java -classpath C:\java\MyClasses;C:\java\OtherClasses ...

Note that the two paths are separated by a semicolon.

Specification order

The order in which you specify multiple class path entries is important. The Java interpreter will look for classes in the directories in the order they appear in the class path variable. In the example above, the Java interpreter will first look for a needed class in the directory C:\java\MyClasses. Only if it doesn't find a class with the proper name in that directory will the interpreter look in the C:\java\OtherClasses directory.


Copyright © 2004-2006 Sun Microsystems, Inc. All Rights Reserved.

Sun
Java Software





honzeland 2007-01-31 14:32 发表评论
]]>
Java/J2EE中文问题l极解决之道 http://www.aygfsteel.com/honzeland/articles/82284.htmlhonzelandhonzelandMon, 20 Nov 2006 07:31:00 GMThttp://www.aygfsteel.com/honzeland/articles/82284.htmlhttp://www.aygfsteel.com/honzeland/comments/82284.htmlhttp://www.aygfsteel.com/honzeland/articles/82284.html#Feedback0http://www.aygfsteel.com/honzeland/comments/commentRss/82284.htmlhttp://www.aygfsteel.com/honzeland/services/trackbacks/82284.html 板桥里h http://www.jdon.com 2005/06/29

  Java中文问题一直困扰着很多初学者,如果了解了Javapȝ的中文问题原理,我们可以对中文问题能够采取Ҏ的解决之道?/p>

  最古老的解决Ҏ是用String的字节码转换Q这U方案问题是不方便,我们需要破坏对象封装性,q行字节码{换?/p>

  q有一U方式是对J2EE容器q行~码讄Q如果J2EE应用pȝq该容器,则会发生qQ而且指定容器配置不符合J2EE应用和容器分ȝ原则?/p>

  在Java内部q算中,涉及到的所有字W串都会被{化ؓUTF-8~码来进行运。那么,在被Java转化之前Q字W串是什么样的字W集Q?JavaLҎ操作pȝ的默认编码字W集来决定字W串的初始编码,而且Javapȝ的输入和输出的都是采取操作系l的默认~码?/p>

  因此Q如果能l一Javapȝ的输入、输出和操作pȝ3者的~码字符集合Q将能够使Javapȝ正确处理和显C汉字。这是处理Javapȝ汉字的一个原则,但是在实际项目中Q能够正抓住和控制住Javapȝ的输入和输出部分是比较难的。J2EE中,׃涉及到外部浏览器和数据库{,所以中文问题ؕ码显得非常突出?/p>

  J2EE应用E序是运行在J2EE容器中。在q个pȝ中,输入途径有很多种Q一U是通过面表单打包成请求(requestQ发往服务器的Q第二种是通过数据库读入;q有W?U输入比较复杂,JSP在第一ơ运行时L被编译成ServletQJSP中常常包含中文字W,那么~译使用javacӞJava根据默认的操作pȝ~码作ؓ初始~码。除非特别指定,如在Jbuilder/eclipse中可以指定默认的字符集?/p>

  输出途径也有几种Q第一U是JSP面的输出。由于JSP面已经被编译成ServletQ那么在输出Ӟ也将Ҏ操作pȝ的默认编码来选择输出~码Q除非指定输出编码方式;q有输出途径是数据库Q将字符串输出到数据库?/p>

  由此看来Q一个J2EEpȝ的输入输出是非常复杂Q而且是动态变化的Q而Java是跨q_q行的,在实际编译和q行中,都可能涉及到不同的操作系l,如果ȝJava自由Ҏ操作pȝ来决定输入输出的~码字符集,q将不可控制地出Cؕ码?/p>

  正是׃Java的跨q_Ҏ,使得字符集问题必ȝ具体pȝ来统一解决Q所以在一个Java应用pȝ中,解决中文q的根本办法是明确指定整个应用pȝl一字符集?/strong>

  指定l一字符集时Q到底是指定ISO8859_1 、GBKq是UTF-8呢?

  Q?Q如l一指定为ISO8859_1Q因为目前大多数软g都是西方人编制的Q他们默认的字符集就是ISO8859_1Q包括操作系lLinux和数据库MySQL{。这P如果指定Jivel一~码为ISO8859_1Q那么就有下?个环节必L握:

  开发和~译代码时指定字W集为ISO8859_1?/p>

  q行操作pȝ的默认编码必LISO8859_1Q如Linux?/p>

  在JSP头部声明Q?lt;%@ page contentType="text/html;charset=ISO8859_1" %>?/p>

  Q?Q如果统一指定为GBK中文字符集,上述3个环节同样需要做刎ͼ不同的是只能q行在默认编码ؓGBK的操作系l,如中文Windows?/p>

  l一~码为ISO8859_1和GBK虽然带来~制代码的方便,但是各自只能在相应的操作pȝ上运行。但是也破坏了Java跨^台运行的优越性,只在一定范围内行得通。例如,Z使得GBK~码在linux上运行,讄Linux~码为GBK?/p>

  那么有没有一U除了应用系l以外不需要进行Q何附加设|的中文~码Ҏ解决Ҏ呢?

  Java/J2EEpȝ的统一~码定义为UTF-8。UTF-8~码是一U兼Ҏ有语a的编码方式,惟一比较ȝ的就是要扑ֈ应用pȝ的所有出入口Q然后用UTF-8厠Z结扎”它?/p>

  一个J2EE应用pȝ需要做下列几步工作Q?/p>

  1. 开发和~译代码时指定字W集为UTF-8。JBuilder和Eclipse都可以在目属性中讄?
  2. 使用qo器,如果所有请求都l过一个Servlet控制分配器,那么使用Servlet的filter执行语句Q将所有来自浏览器的请求(requestQ{换ؓUTF-8Q因为浏览器发过来的h包根据浏览器所在的操作pȝ~码Q可能是各种形式~码。关键一句:
    request.setCharacterEncoding("UTF-8")?br />|上有此filter的源码,Jdon框架源码中com.jdon.util.SetCharacterEncodingFilter
    需要配|web.xml Ȁz该Filter?
  3. 在JSP头部声明Q?lt;%@ page contentType="text/html;charset= UTF-8" %>?
  4. 在Jsp的html代码中,声明UTF-8:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. 讑֮数据库连接方式是UTF-8。例如连接MYSQL旉|URL如下Q?br />jdbc:mysql://localhost:3306/test?useUnicode=true&amp;characterEncoding=UTF-8
    注意Q上q写法是JBoss的mysql-ds.xml写法Q多亏网友提C,在tomcat?amp;amp;要写?amp;卛_。一般其他数据库都可以通过理讄讑֮UTF-8
  6. 其他和外界交互时能够讑֮~码时就讑֮UTF-8Q例如读取文Ӟ操作XML{?
     W者以前在Jsp/Servlet时就采取q个原则Q后来用Struts、Tapestry、EJB、Hibernate、Jdon{框架时Q从未被q困扰q,可以说适合各种架构。希望本Ҏ供更多初学者分享,减少Java/J2EE的第一个拦路虎Q也避免因ؓ采取一些时解x案,D中文问题一直出现在新的技术架构中?

honzeland 2006-11-20 15:31 发表评论
]]>
String和StringBuffer之概?http://www.aygfsteel.com/honzeland/articles/80328.htmlhonzelandhonzelandFri, 10 Nov 2006 02:44:00 GMThttp://www.aygfsteel.com/honzeland/articles/80328.htmlhttp://www.aygfsteel.com/honzeland/comments/80328.htmlhttp://www.aygfsteel.com/honzeland/articles/80328.html#Feedback0http://www.aygfsteel.com/honzeland/comments/commentRss/80328.htmlhttp://www.aygfsteel.com/honzeland/services/trackbacks/80328.html阅读全文

honzeland 2006-11-10 10:44 发表评论
]]>
վ֩ģ壺 | ͼʲ| | | | | Ȫ| | Ϫ| ֣| | ɽ| | Դ| | ˶| Ϸ| ͨ| ͷ| ī| | ƽ| | ܱ| | ɽ| ̨| | | ݳ| | ɽ| | | | | ׸| Դ| ޶| Դ| ɽ|