File jar akan dijalankan pada sistem operasi window$ dan linux, tentunya akan mempunyai perbedaan dalam hal sistem path
Bismillah
q> LA to code
[sourcecode language="java"]
package com.saifiahmada.mysqllog;
import java.io.File;
/** @author Saifi Ahmada Sep 24, 2014 10:20:54 AM **/
public class MysqlLog {
private static String OS = System.getProperty("os.name").toLowerCase();
public static void main (String [] args) {
String folderName = null;
if (OS.indexOf("win") >= 0) {
folderName = "D:\\MYSQL_LOG\\";
} else {
folderName = "/home/saifi/Program/MYSQL_LOG/";
}
File folder = new File(folderName);
File [] files = folder.listFiles();
for (File file : files) {
System.out.println("Nama File : " + file.getName());
}
}
}
[/sourcecode]
q> Sourcecod in capturing
Alhamdulillah
No comments:
Post a Comment