Here you can find the source of toJavaPath(String path)
Parameter | Description |
---|---|
path | - |
public static String toJavaPath(String path)
//package com.java2s; public class Main { /**/* w w w. ja v a2 s. c om*/ * @param path - * @return - */ public static String toJavaPath(String path) { String javaPath = null; if (path != null) { javaPath = path.replace("\\", "/"); } return javaPath; } }