jimbo jawgar

Greenhorn
+ Follow
since Oct 25, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by jimbo jawgar

We had to load our zipped EBCDIC into a DB2 table defined as binary (We could not prevent ASCII conversion when reading from a var_char table). Thereafter byte-stream java IO was used, followed by unzip, then ASCII conversion
Has anyone extracted zipped EBCDIC i.e. zipped mainframe data into a websphere java application? We believe the content is being converted to ASCII - which we need to disable.
TIA
Hi
Can someone give me a concise statement of classpath theory, plus answer the following

TIA

In windows XP there are user variables and systems variables, should/may both contain Classpath? If both, should they be identical?

What is the affect of a preliminary dot & semo-colon ie .; ?

I am doing a course/assignment running java web server 1.0.1. For this purpose I have (user) classpath set

.;C:\DATA\JFW\Java SDK\lib\tools.jar;C:\jswdk1_0_1-win\jswdk-1.0.1\lib\servlet.jar;C:\jswdk1_0_1-win\jswdk-1.0.1\lib\jspengine.jar

Should I have additional directories?
19 years ago
Hi
I there a class & method to parse a comma delimited string
Something like
SomeClass sc = new SomeClass("abc,efg,hij");
String s = sc(1,",");
System.out.println(s)

abc

Thanks


String method split(",") worked fine. Thanks alot
[ November 02, 2004: Message edited by: jimbo jawgar ]
19 years ago