Here you can find the source of getTempServerLink(String str)
public static String getTempServerLink(String str)
//package com.java2s; public class Main { public static String getTempServerLink(String str) { String lnk = str.substring(str.lastIndexOf("/")); //lnk = "http://10.0.2.2/edl" + lnk; lnk = "http://192.168.1.100/edl" + lnk; return lnk; }/*from w w w . j a v a 2 s . c om*/ }