您的位置:首页 > 编程语言 > Java开发

Doing more with files with Java and PeopleCode

2011-12-15 22:34 417 查看

Doing more with files with Java and PeopleCode

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;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: