com.simiacryptus.util.Util.cacheLocal()方法的使用及代码示例

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

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

Util.cacheLocal介绍

[英]Cache input stream.
[中]缓存输入流。

代码示例

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Cache input stream.
  3. *
  4. * @param file the file
  5. * @param url the url
  6. * @return the input stream
  7. * @throws IOException the io exception
  8. */
  9. public static InputStream cacheLocal(String file, URI url) throws IOException {
  10. return cacheLocal(file, getStreamSupplier(url));
  11. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private static void read() {
  2. try {
  3. InputStream in = Util.cacheLocal(file, new URI(url));
  4. String txt = new String(IOUtils.toByteArray(in), "UTF-8").replaceAll("\r", "");
  5. for (String paragraph : txt.split("\n\\s*\n")) {
  6. queue.add(new Shakespeare(paragraph));
  7. }
  8. } catch (final IOException e) {
  9. // Ignore... end of stream
  10. } catch (final RuntimeException e) {
  11. if (!(e.getCause() instanceof InterruptedException)) throw e;
  12. } catch (final Exception e) {
  13. throw new RuntimeException(e);
  14. }
  15. }
  16. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private static void read() {
  2. try {
  3. InputStream in = Util.cacheLocal(file, new URI(url));
  4. String txt = new String(IOUtils.toByteArray(in), "UTF-8").replaceAll("\r", "");
  5. List<CharSequence> list = Arrays.stream(txt.split("\n")).map(x -> x.replaceAll("[^\\w]", "")).collect(Collectors.toList());
  6. Collections.shuffle(list);
  7. for (CharSequence paragraph : list) {
  8. queue.add(new EnglishWords(paragraph));
  9. }
  10. } catch (final IOException e) {
  11. // Ignore... end of stream
  12. } catch (final RuntimeException e) {
  13. if (!(e.getCause() instanceof InterruptedException)) throw e;
  14. } catch (final Exception e) {
  15. throw new RuntimeException(e);
  16. }
  17. }
  18. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private static void read() {
  2. try {
  3. InputStream load = Util.cacheLocal(file, new URI(url));
  4. try (final ZipInputStream in = new ZipInputStream(load)) {
  5. ZipEntry entry = in.getNextEntry();
  6. try (final BufferedReader reader = new BufferedReader(new InputStreamReader(in))) {
  7. CharSequence[] header = reader.readLine().split(",");
  8. String read;
  9. while (null != (read = reader.readLine())) {
  10. String[] values = read.split(",");
  11. queue.add(new TweetSentiment(values[3].trim(), Integer.parseInt(values[1].trim())));
  12. }
  13. }
  14. }
  15. } catch (final IOException e) {
  16. // Ignore... end of stream
  17. } catch (final RuntimeException e) {
  18. if (!(e.getCause() instanceof InterruptedException)) throw e;
  19. } catch (final Exception e) {
  20. throw new RuntimeException(e);
  21. }
  22. }
  23. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private void read() {
  2. try {
  3. try (final InputStream in = Util.cacheLocal(file, new URI(url))) {
  4. String txt = new String(IOUtils.toByteArray(in), "UTF-8").replaceAll("\r", "");
  5. CharSequence[] list = txt.split("\n");
  6. String activeItem = "";
  7. for (CharSequence item : list) {
  8. if (item.toString().startsWith("$")) {
  9. activeItem = item.toString().substring(1);
  10. } else {
  11. queue.add(new Misspelling(activeItem, item));
  12. }
  13. }
  14. }
  15. } catch (final RuntimeException e) {
  16. if (!(e.getCause() instanceof InterruptedException)) e.printStackTrace();
  17. } catch (final Exception e) {
  18. e.printStackTrace();
  19. } finally {
  20. System.err.println("Read thread exit");
  21. }
  22. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. @Override
  2. protected void read(List<WikiArticle> queue) {
  3. try {
  4. try (final InputStream in = new BZip2CompressorInputStream(Util.cacheLocal(file, new URI(url)), true)) {
  5. final SAXParserFactory spf = SAXParserFactory.newInstance();
  6. spf.setNamespaceAware(false);

相关文章