net.roboconf.core.utils.Utils.readUrlContent()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(66)

本文整理了Java中net.roboconf.core.utils.Utils.readUrlContent()方法的一些代码示例,展示了Utils.readUrlContent()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utils.readUrlContent()方法的具体详情如下:
包路径:net.roboconf.core.utils.Utils
类名称:Utils
方法名:readUrlContent

Utils.readUrlContent介绍

[英]Reads the content of an URL (assumed to be text content).
[中]读取URL的内容(假定为文本内容)。

代码示例

代码示例来源:origin: roboconf/roboconf-platform

/**
 * Reads the content of an URL (assumed to be text content).
 * @param url an URL
 * @return a non-null string
 * @throws IOException
 * @throws URISyntaxException
 */
public static String readUrlContentQuietly( String url, Logger logger ) {
  String result = "";
  try {
    result = readUrlContent( url );
  } catch( Exception e ) {
    logger.severe( "Content of URL " + url + " could not be read." );
    logException( logger, e );
  }
  return result;
}

代码示例来源:origin: roboconf/roboconf-platform

@Test
public void testReadUrlContent() throws Exception {
  File f = this.folder.newFile();
  Utils.writeStringInto( "kikou", f );
  String readContent = Utils.readUrlContent( f.toURI().toURL().toString());
  Assert.assertEquals( "kikou", readContent );
  Utils.deleteFilesRecursively( f );
  Assert.assertFalse( f.exists());
  Logger logger = Logger.getLogger( getClass().getName());
  readContent = Utils.readUrlContentQuietly( f.toURI().toURL().toString(), logger );
  Assert.assertEquals( "", readContent );
}

相关文章

微信公众号

最新文章

更多