org.apache.hadoop.hdfs.server.common.Util.stringAsURI()方法的使用及代码示例

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

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

Util.stringAsURI介绍

[英]Interprets the passed string as a URI. In case of error it assumes the specified string is a file.
[中]将传递的字符串解释为URI。如果出现错误,它会假定指定的字符串是一个文件。

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs

  1. /**
  2. * Converts a collection of strings into a collection of URIs.
  3. * @param names collection of strings to convert to URIs
  4. * @return collection of URIs
  5. */
  6. public static List<URI> stringCollectionAsURIs(
  7. Collection<String> names) {
  8. List<URI> uris = new ArrayList<>(names.size());
  9. for(String name : names) {
  10. try {
  11. uris.add(stringAsURI(name));
  12. } catch (IOException e) {
  13. LOG.error("Error while processing URI: " + name, e);
  14. }
  15. }
  16. return uris;
  17. }

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs-test

  1. /**
  2. * Test for a relative path, os independent
  3. * @throws IOException
  4. */
  5. public void testRelativePathAsURI() throws IOException {
  6. URI u = Util.stringAsURI(RELATIVE_FILE_PATH);
  7. LOG.info("Uri: " + u);
  8. assertNotNull(u);
  9. }

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

  1. /**
  2. * Converts a collection of strings into a collection of URIs.
  3. * @param names collection of strings to convert to URIs
  4. * @return collection of URIs
  5. */
  6. public static List<URI> stringCollectionAsURIs(
  7. Collection<String> names) {
  8. List<URI> uris = new ArrayList<URI>(names.size());
  9. for(String name : names) {
  10. try {
  11. uris.add(stringAsURI(name));
  12. } catch (IOException e) {
  13. LOG.error("Error while processing URI: " + name, e);
  14. }
  15. }
  16. return uris;
  17. }
  18. }

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. /**
  2. * Converts a collection of strings into a collection of URIs.
  3. * @param names collection of strings to convert to URIs
  4. * @return collection of URIs
  5. */
  6. public static Collection<URI> stringCollectionAsURIs(
  7. Collection<String> names) {
  8. Collection<URI> uris = new ArrayList<URI>(names.size());
  9. for(String name : names) {
  10. try {
  11. uris.add(stringAsURI(name));
  12. } catch (IOException e) {
  13. LOG.error("Error while processing URI: " + name, e);
  14. }
  15. }
  16. return uris;
  17. }
  18. }

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

  1. /**
  2. * Converts a collection of strings into a collection of URIs.
  3. * @param names collection of strings to convert to URIs
  4. * @return collection of URIs
  5. */
  6. public static List<URI> stringCollectionAsURIs(
  7. Collection<String> names) {
  8. List<URI> uris = new ArrayList<URI>(names.size());
  9. for(String name : names) {
  10. try {
  11. uris.add(stringAsURI(name));
  12. } catch (IOException e) {
  13. LOG.error("Error while processing URI: " + name, e);
  14. }
  15. }
  16. return uris;
  17. }
  18. }

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs-test

  1. /**
  2. * Test for an OS dependent absolute paths.
  3. * @throws IOException
  4. */
  5. public void testAbsolutePathAsURI() throws IOException {
  6. URI u = null;
  7. u = Util.stringAsURI(ABSOLUTE_PATH_WINDOWS);
  8. assertNotNull(
  9. "Uri should not be null for Windows path" + ABSOLUTE_PATH_WINDOWS, u);
  10. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  11. u = Util.stringAsURI(ABSOLUTE_PATH_UNIX);
  12. assertNotNull("Uri should not be null for Unix path" + ABSOLUTE_PATH_UNIX, u);
  13. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  14. }

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs-test

  1. /**
  2. * Test for a URI
  3. * @throws IOException
  4. */
  5. public void testURI() throws IOException {
  6. LOG.info("Testing correct Unix URI: " + URI_UNIX);
  7. URI u = Util.stringAsURI(URI_UNIX);
  8. LOG.info("Uri: " + u);
  9. assertNotNull("Uri should not be null at this point", u);
  10. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  11. assertEquals(URI_PATH_UNIX, u.getPath());
  12. LOG.info("Testing correct windows URI: " + URI_WINDOWS);
  13. u = Util.stringAsURI(URI_WINDOWS);
  14. LOG.info("Uri: " + u);
  15. assertNotNull("Uri should not be null at this point", u);
  16. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  17. assertEquals(URI_PATH_WINDOWS.replace("%20", " "), u.getPath());
  18. }
  19. }

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

  1. /**
  2. * Test for a relative path, os independent
  3. * @throws IOException
  4. */
  5. @Test
  6. public void testRelativePathAsURI() throws IOException {
  7. URI u = Util.stringAsURI(RELATIVE_FILE_PATH);
  8. LOG.info("Uri: " + u);
  9. assertNotNull(u);
  10. }

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

  1. /**
  2. * Test for an OS dependent absolute paths.
  3. * @throws IOException
  4. */
  5. @Test
  6. public void testAbsolutePathAsURI() throws IOException {
  7. URI u = null;
  8. u = Util.stringAsURI(ABSOLUTE_PATH_WINDOWS);
  9. assertNotNull(
  10. "Uri should not be null for Windows path" + ABSOLUTE_PATH_WINDOWS, u);
  11. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  12. u = Util.stringAsURI(ABSOLUTE_PATH_UNIX);
  13. assertNotNull("Uri should not be null for Unix path" + ABSOLUTE_PATH_UNIX, u);
  14. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  15. }

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

  1. /**
  2. * Test for a URI
  3. * @throws IOException
  4. */
  5. @Test
  6. public void testURI() throws IOException {
  7. LOG.info("Testing correct Unix URI: " + URI_UNIX);
  8. URI u = Util.stringAsURI(URI_UNIX);
  9. LOG.info("Uri: " + u);
  10. assertNotNull("Uri should not be null at this point", u);
  11. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  12. assertEquals(URI_PATH_UNIX, u.getPath());
  13. LOG.info("Testing correct windows URI: " + URI_WINDOWS);
  14. u = Util.stringAsURI(URI_WINDOWS);
  15. LOG.info("Uri: " + u);
  16. assertNotNull("Uri should not be null at this point", u);
  17. assertEquals(URI_FILE_SCHEMA, u.getScheme());
  18. assertEquals(URI_PATH_WINDOWS.replace("%20", " "), u.getPath());
  19. }
  20. }

相关文章