Doing more with files with Java and PeopleCode

By Chris Malek | Wed, Oct 13, 2010

Here are some examples of using java objects in PeopleCode to do more with files than you can in PeopleCode. We can get the last modified time, the size, and we can rename it.

Local string &fileName;

&fileName = "/path/to/file/myFile.txt";

/* Get a reference to a file object */

Local JavaObject &f = CreateJavaObject("java.io.File", &fileName);

/* get a reference to the simple date format */

Local JavaObject &sdf = CreateJavaObject("java.text.SimpleDateFormat", "MM/dd/yyyy HH:mm:ss");

/* Get the last modified time as a string */

&mod = &sdf.format(&f.lastModified());

/* Get the size in bytes */

Local number &SIZE = &f.length();

/* Lets try to rename the file */

local string &newFileName;

&newFileName = "/newPath/to/File/myfile.txt.backup";

Local JavaObject &fBU = CreateJavaObject("java.io.File", &newFileName);

Local boolean &b2;

&b2 = &f.renameTo(&fBU);

If &b2 = True Then

    /* RENAME SUCCESSFUL */

ELSE

    /* SOMETHING HAPPENED */

END-IF;
Article Categories
Author Info
Chris Malek

Chris Malek is a PeopleTools® Technical Consultant with two decades of experience working on PeopleSoft enterprise software projects. He is available for consulting engagements.

About Chris Work with Chris
Looking for pain-free PeopleSoft web services? 😀
PeopleSoft Simple Web Services (SWS)

Introducing a small but powerful PeopleSoft bolt-on that makes web services very easy. If you have a SQL statement, you can turn that into a web service in PeopleSoft in a few minutes.

Book
Integration Broker - The Missing Manual

I am in the process of writing a book called "Integration Broker - The Missing Manual" that you can read online.