Here you can find the source of toUrlParameterString(String fenString)
public static String toUrlParameterString(String fenString)
//package com.java2s; //License from project: Apache License public class Main { public static String toUrlParameterString(String fenString) { return fenString.replace(' ', '.').replace('/', '_'); }/*from w ww .j av a 2 s . c o m*/ }