• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java IOUtils类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.logging.log4j.core.util.IOUtils的典型用法代码示例。如果您正苦于以下问题:Java IOUtils类的具体用法?Java IOUtils怎么用?Java IOUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IOUtils类属于org.apache.logging.log4j.core.util包,在下文中一共展示了IOUtils类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: annotate

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
public String annotate(String text) throws URISyntaxException, IOException {
    URI requestURI = new URIBuilder(endpoint).build();
    HttpPost request = new HttpPost(requestURI);

    List<NameValuePair> urlParameters = new ArrayList<>();
    urlParameters.add(new BasicNameValuePair("text", text));
    urlParameters.add(new BasicNameValuePair("disambiguation", "1"));
    urlParameters.add(new BasicNameValuePair("topic", "0.25"));
    urlParameters.add(new BasicNameValuePair("include_text", "1"));
    urlParameters.add(new BasicNameValuePair("min_weight", "0.25"));
    urlParameters.add(new BasicNameValuePair("image", "1"));
    urlParameters.add(new BasicNameValuePair("class", "1"));
    urlParameters.add(new BasicNameValuePair("app_id", "0"));
    urlParameters.add(new BasicNameValuePair("app_key", "0"));

    request.setEntity(new UrlEncodedFormEntity(urlParameters));
    CloseableHttpResponse response = client.execute(request);
    if (response.getStatusLine().getStatusCode() >= 400) {
        response.close();
        throw new IOException("Wikimachine endpoint didn't understand the request");
    }
    String responseText = IOUtils.toString(new InputStreamReader(response.getEntity().getContent()));
    response.close();

    return responseText;
}
 
开发者ID:Remper,项目名称:sociallink,代码行数:27,代码来源:WikimachineService.java


示例2: on

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
private SagaResponse on(Request request) {
  try {
    HttpResponse httpResponse = request.execute().returnResponse();
    int statusCode = httpResponse.getStatusLine().getStatusCode();
    String content = IOUtils.toString(new InputStreamReader(httpResponse.getEntity().getContent()));
    if (statusCode >= 200 && statusCode < 300) {
      return new SuccessfulSagaResponse(content);
    }
    throw new TransportFailedException("The remote service returned with status code " + statusCode
        + ", reason " + httpResponse.getStatusLine().getReasonPhrase()
        + ", and content " + content);
  } catch (IOException e) {
    throw new TransportFailedException("Network Error", e);
  }
}
 
开发者ID:apache,项目名称:incubator-servicecomb-saga,代码行数:16,代码来源:HttpClientTransport.java


示例3: run

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
/**
 * Execute a command from specified path
 * @param command command to be executed
 * @param pathName path where the command should be executed
 * @return command's output
 */
public static String run(String command, String pathName) {

  ExecutorService newFixedThreadPool = null;

  try {
    logger.info(CMD_LOG_TMPL, Optional.ofNullable(pathName).orElse(""), command);
    final Process process;
    String[] cmd = { "/bin/sh", "-c", command};
    process = Runtime.getRuntime().exec(
        cmd,
        null,
        StringUtils.isNotBlank(pathName) ? new File(pathName) : null);

    newFixedThreadPool = Executors.newFixedThreadPool(1);
    Future<String> output = newFixedThreadPool.submit(() ->
      IOUtils.toString( new InputStreamReader(process.getInputStream()))
    );
    Future<String> error = newFixedThreadPool.submit(() ->
      IOUtils.toString( new InputStreamReader(process.getErrorStream()))
    );

    if (!process.waitFor(3, TimeUnit.MINUTES)) {
      logger.info("Destroy process, it's been hanged out for more than 3 minutes!");
      process.destroy();
    }
    logger.info(CMD_LOG_TMPL, Optional.ofNullable(pathName).orElse(""), output.get());
    if (StringUtils.isNotBlank(error.get())){
      logger.error(CMD_LOG_TMPL,  Optional.ofNullable(pathName).orElse(""), error.get());
    }

    return output.get();

  } catch (Exception e) {
    logger.error("Error executing command: " + command, e);
  } finally {
    Optional.ofNullable(newFixedThreadPool).ifPresent(ExecutorService::shutdown);
  }
  return StringUtils.EMPTY;
}
 
开发者ID:lpavone,项目名称:SVNAutoMerger,代码行数:46,代码来源:CommandExecutor.java


示例4: getStringContent

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
private String getStringContent(URL resource) throws IOException {
    try (InputStream resourceAsStream = resource.openStream()) {
        InputStreamReader inputStreamReader = new InputStreamReader(resourceAsStream, "UTF-8");
        return IOUtils.toString(inputStreamReader);
    }
}
 
开发者ID:MyCoRe-Org,项目名称:mycore,代码行数:7,代码来源:MCRServletContextResourceImporter.java


示例5: readResource

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
@NotNull
private String readResource(@NotNull final String resource) throws IOException {
    InputStream in = getClass().getResourceAsStream(resource);
    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    return IOUtils.toString(reader);
}
 
开发者ID:hartwigmedical,项目名称:hmftools,代码行数:7,代码来源:GenerateCircosData.java


示例6: readResource

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
@NotNull
private String readResource() throws IOException {
    InputStream in = VersionInfo.class.getClassLoader().getResourceAsStream(resource);
    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    return IOUtils.toString(reader);
}
 
开发者ID:hartwigmedical,项目名称:hmftools,代码行数:7,代码来源:VersionInfo.java


示例7: createScript

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
@PluginFactory
public static ScriptFile createScript(
        // @formatter:off
        @PluginAttribute("name") String name,
        @PluginAttribute("language") String language,
        @PluginAttribute("path") final String filePathOrUri,
        @PluginAttribute("isWatched") final Boolean isWatched,
        @PluginAttribute("charset") final Charset charset) {
        // @formatter:on
    if (filePathOrUri == null) {
        LOGGER.error("No script path provided for ScriptFile");
        return null;
    }
    if (name == null) {
        name = filePathOrUri;
    }
    final URI uri = NetUtils.toURI(filePathOrUri);
    final File file = FileUtils.fileFromUri(uri);
    if (language == null && file != null) {
        final String fileExtension = FileUtils.getFileExtension(file);
        if (fileExtension != null) {
            final ExtensionLanguageMapping mapping = ExtensionLanguageMapping.getByExtension(fileExtension);
            if (mapping != null) {
                language = mapping.getLanguage();
            }
        }
    }
    if (language == null) {
        LOGGER.info("No script language supplied, defaulting to {}", DEFAULT_LANGUAGE);
        language = DEFAULT_LANGUAGE;
    }

    final Charset actualCharset = charset == null ? Charset.defaultCharset() : charset;
    String scriptText;
    try (final Reader reader = new InputStreamReader(
            file != null ? new FileInputStream(file) : uri.toURL().openStream(), actualCharset)) {
        scriptText = IOUtils.toString(reader);
    } catch (final IOException e) {
        LOGGER.error("{}: language={}, path={}, actualCharset={}", e.getClass().getSimpleName(),
                language, filePathOrUri, actualCharset);
        return null;
    }
    final Path path = file != null ? Paths.get(file.toURI()) : Paths.get(uri);
    if (path == null) {
        LOGGER.error("Unable to convert {} to a Path", uri.toString());
        return null;
    }
    return new ScriptFile(name, path, language, isWatched == null ? Boolean.FALSE : isWatched, scriptText);
}
 
开发者ID:apache,项目名称:logging-log4j2,代码行数:50,代码来源:ScriptFile.java


示例8: send

import org.apache.logging.log4j.core.util.IOUtils; //导入依赖的package包/类
@Override
public void send(final Layout<?> layout, final LogEvent event) throws IOException {
    final HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();
    urlConnection.setAllowUserInteraction(false);
    urlConnection.setDoOutput(true);
    urlConnection.setDoInput(true);
    urlConnection.setRequestMethod(method);
    if (connectTimeoutMillis > 0) {
        urlConnection.setConnectTimeout(connectTimeoutMillis);
    }
    if (readTimeoutMillis > 0) {
        urlConnection.setReadTimeout(readTimeoutMillis);
    }
    if (layout.getContentType() != null) {
        urlConnection.setRequestProperty("Content-Type", layout.getContentType());
    }
    for (final Property header : headers) {
        urlConnection.setRequestProperty(
            header.getName(),
            header.isValueNeedsLookup() ? getConfiguration().getStrSubstitutor().replace(event, header.getValue()) : header.getValue());
    }
    if (sslConfiguration != null) {
        ((HttpsURLConnection)urlConnection).setSSLSocketFactory(sslConfiguration.getSslSocketFactory());
    }
    if (isHttps && !verifyHostname) {
        ((HttpsURLConnection)urlConnection).setHostnameVerifier(LaxHostnameVerifier.INSTANCE);
    }

    final byte[] msg = layout.toByteArray(event);
    urlConnection.setFixedLengthStreamingMode(msg.length);
    urlConnection.connect();
    try (OutputStream os = urlConnection.getOutputStream()) {
        os.write(msg);
    }

    final byte[] buffer = new byte[1024];
    try (InputStream is = urlConnection.getInputStream()) {
        while (IOUtils.EOF != is.read(buffer)) {
            // empty
        }
    } catch (final IOException e) {
        final StringBuilder errorMessage = new StringBuilder();
        try (InputStream es = urlConnection.getErrorStream()) {
            errorMessage.append(urlConnection.getResponseCode());
            if (urlConnection.getResponseMessage() != null) {
                errorMessage.append(' ').append(urlConnection.getResponseMessage());
            }
            if (es != null) {
                errorMessage.append(" - ");
                int n;
                while (IOUtils.EOF != (n = es.read(buffer))) {
                    errorMessage.append(new String(buffer, 0, n, CHARSET));
                }
            }
        }
        if (urlConnection.getResponseCode() > -1) {
            throw new IOException(errorMessage.toString());
        } else {
            throw e;
        }
    }
}
 
开发者ID:apache,项目名称:logging-log4j2,代码行数:63,代码来源:HttpURLConnectionManager.java



注:本文中的org.apache.logging.log4j.core.util.IOUtils类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java OWLDataIntersectionOf类代码示例发布时间:2022-05-22
下一篇:
Java FkFixed类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap