Here you can find the source of rename(String platformLibPath, String newPath)
public static void rename(String platformLibPath, String newPath)
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { public static void rename(String platformLibPath, String newPath) { new File(platformLibPath).renameTo(new File(newPath)); }/*from www . j a v a 2 s .c om*/ }