我想创建指向网站的超链接,该链接是来自mongoDB的数据
但数据的结果是[ "http://thehackernews.com/2013/12/judge-ruled-nsa-telephone-metadata.html"]
如何删除[(空格)"........"]
即使在Java或mongoDB上
来自mongoDB的数据是http://thehackernews.com/2013/12/judge-ruled-nsa-telephone-metadata.html
但是当我在Java上打印它时,结果总是[ "http://thehackernews.com/2013/12/judge-ruled-nsa-telephone-metadata.html"]
我试图用
String li=object.get("link").toString();
-
String[] splitStr = li.split("\s+");
-
String cut=li.split("\s");
-
String hasil=li.substring(li.indexOf("[")+1,li.indexOf("]"));
没有任何成功,然后我想我可以设置mongoDB的输出(但我不明白),到目前为止,我只是尝试从Java中剪切字符串
有什么解决方案吗?
您能否尝试以下方法:
String str2=li.substring(li.indexOf(""")+1,li.lastIndexOf((""")));
试试这个,它对我有用
li = li.substring(str.indexOf(""")+1);
li = li.substring(0, str.indexOf("""));