equal
deleted
inserted
replaced
|
1 |
|
2 This directory contains a test to exercise the Premain-Class attribute with |
|
3 a non US-ASCII class name. As the file system may not support a file with |
|
4 this name the test is compiled off-line and the jar file checked into SCCS. |
|
5 |
|
6 In the event that Agent.jar needs to be re-built here are the steps which |
|
7 must be performed on a system that supports the the EURO in a file name |
|
8 (Windows 2000 is fine) :- |
|
9 |
|
10 1. Create the agent source file and agent.mf :- |
|
11 |
|
12 javac CreateFiles.java |
|
13 java CreateFiles |
|
14 |
|
15 2. Re-create the agent jar file :- |
|
16 |
|
17 rm CreateFiles.class |
|
18 javac -encoding utf8 *.java |
|
19 jar cfm Agent.jar agent.mf *.class |
|
20 |
|
21 3. Check Agent.jar into SCCS. |
|
22 |