xclasses.jar

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

xclasses.jar

rvjansen
On a question of Walter I was looking around for a copy of Marchesini's xclasses.jar. I was sent the PDF in 2010, I went back to my email archive and I did not find the accompanying class library. If anyone has it, could they please email it to me? (You can get a message from gmail if mailing to my xs4all.nl address - you can ignore that as gmail only pops my email for safekeeping).

best regards,

René.
_______________________________________________
Ibm-netrexx mailing list
[hidden email]
Online Archive : http://ibm-netrexx.215625.n3.nabble.com/

Reply | Threaded
Open this post in threaded view
|

Weird java problem

kenner

I'm trying to create a new subdirectory in the directory I am in. Netrexxify did not work on this snippet of Java code.

 > cat Cre8DirectoryPath.OUT
if (\Directory.Exists(path))  then
  Do label CPC2
  di = DirectoryInfo Directory.CreateDirectory(path)
  End CPC2


C:\Documents and Settings\keklein\REXX\NetRexx\bjcp6+  Fri 05/25/2012 15:03
 > cat Cre8DirectoryPath.java
if (!Directory.Exists(path))  {   DirectoryInfo di = Directory.CreateDirectory(path); }

         filePath = FileSystem.getpath("txt_files")
--        Directory.CreateDirectory(Path.GetDirectoryName(filePath))
                       
        if (\Directory.Exists(filePath))  then
                 Do label CPC2
                       di = Directory.CreateDirectory(filePath)
             End CPC2
             else do
                      say "The directory" filePath "already exists"
             end
_______________________________________________
Ibm-netrexx mailing list
[hidden email]
Online Archive : http://ibm-netrexx.215625.n3.nabble.com/