java.net.MalformedURLException.initCause()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(9.1k)|赞(0)|评价(0)|浏览(116)

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

MalformedURLException.initCause介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-framework

  1. /**
  2. * Create a new {@code UrlResource} based on a URI specification.
  3. * <p>The given parts will automatically get encoded if necessary.
  4. * @param protocol the URL protocol to use (e.g. "jar" or "file" - without colon);
  5. * also known as "scheme"
  6. * @param location the location (e.g. the file path within that protocol);
  7. * also known as "scheme-specific part"
  8. * @param fragment the fragment within that location (e.g. anchor on an HTML page,
  9. * as following after a "#" separator)
  10. * @throws MalformedURLException if the given URL specification is not valid
  11. * @see java.net.URI#URI(String, String, String)
  12. */
  13. public UrlResource(String protocol, String location, @Nullable String fragment) throws MalformedURLException {
  14. try {
  15. this.uri = new URI(protocol, location, fragment);
  16. this.url = this.uri.toURL();
  17. this.cleanedUrl = getCleanedUrl(this.url, this.uri.toString());
  18. }
  19. catch (URISyntaxException ex) {
  20. MalformedURLException exToThrow = new MalformedURLException(ex.getMessage());
  21. exToThrow.initCause(ex);
  22. throw exToThrow;
  23. }
  24. }

代码示例来源:origin: org.springframework/spring-core

  1. /**
  2. * Create a new {@code UrlResource} based on a URI specification.
  3. * <p>The given parts will automatically get encoded if necessary.
  4. * @param protocol the URL protocol to use (e.g. "jar" or "file" - without colon);
  5. * also known as "scheme"
  6. * @param location the location (e.g. the file path within that protocol);
  7. * also known as "scheme-specific part"
  8. * @param fragment the fragment within that location (e.g. anchor on an HTML page,
  9. * as following after a "#" separator)
  10. * @throws MalformedURLException if the given URL specification is not valid
  11. * @see java.net.URI#URI(String, String, String)
  12. */
  13. public UrlResource(String protocol, String location, @Nullable String fragment) throws MalformedURLException {
  14. try {
  15. this.uri = new URI(protocol, location, fragment);
  16. this.url = this.uri.toURL();
  17. this.cleanedUrl = getCleanedUrl(this.url, this.uri.toString());
  18. }
  19. catch (URISyntaxException ex) {
  20. MalformedURLException exToThrow = new MalformedURLException(ex.getMessage());
  21. exToThrow.initCause(ex);
  22. throw exToThrow;
  23. }
  24. }

代码示例来源:origin: square/okhttp

  1. malformedUrl.initCause(e);
  2. throw malformedUrl;

代码示例来源:origin: org.netbeans.api/org-openide-awt

  1. e.initCause(iaE);
  2. throw e;

代码示例来源:origin: org.jdom/jdom

  1. mx.initCause(ioe);
  2. throw mx;

代码示例来源:origin: org.apache.servicemix.jbi/org.apache.servicemix.jbi.deployer

  1. /**
  2. * Creates an MalformedURLException with a message and a cause.
  3. *
  4. * @param message exception message
  5. * @param cause exception cause
  6. * @throws MalformedURLException the created MalformedURLException
  7. */
  8. private static void throwAsMalformedURLException(final String message, final Exception cause)
  9. throws MalformedURLException {
  10. final MalformedURLException exception = new MalformedURLException(message);
  11. exception.initCause(cause);
  12. throw exception;
  13. }

代码示例来源:origin: org.ops4j.pax.url/pax-url-wrap

  1. /**
  2. * Creates an MalformedURLException with a message and a cause.
  3. *
  4. * @param message exception message
  5. * @param cause exception cause
  6. *
  7. * @throws MalformedURLException the created MalformedURLException
  8. */
  9. private static void throwAsMalformedURLException( final String message, final Exception cause )
  10. throws MalformedURLException
  11. {
  12. final MalformedURLException exception = new MalformedURLException( message );
  13. exception.initCause( cause );
  14. throw exception;
  15. }

代码示例来源:origin: com.tagtraum/qtsampledsp-java

  1. public QTURL(final URL url) throws MalformedURLException {
  2. this.actualURL = url;
  3. try {
  4. this.originalURL = new URL(url.toURI().toASCIIString());
  5. } catch (URISyntaxException e) {
  6. final MalformedURLException exception = new MalformedURLException(url.toString());
  7. exception.initCause(e);
  8. throw exception;
  9. }
  10. }

代码示例来源:origin: com.sun.xml.ws/rt

  1. public static URL getEncodedURL(String urlStr) throws MalformedURLException {
  2. URL url = new URL(urlStr);
  3. String scheme = String.valueOf(url.getProtocol()).toLowerCase();
  4. if (scheme.equals("http") || scheme.equals("https")) {
  5. try {
  6. return new URL(url.toURI().toASCIIString());
  7. } catch (URISyntaxException e) {
  8. MalformedURLException malformedURLException = new MalformedURLException(e.getMessage());
  9. malformedURLException.initCause(e);
  10. throw malformedURLException;
  11. }
  12. }
  13. return url;
  14. }

代码示例来源:origin: com.sun.xml.ws/jaxws-rt

  1. public static URL getEncodedURL(String urlStr) throws MalformedURLException {
  2. URL url = new URL(urlStr);
  3. String scheme = String.valueOf(url.getProtocol()).toLowerCase();
  4. if (scheme.equals("http") || scheme.equals("https")) {
  5. try {
  6. return new URL(url.toURI().toASCIIString());
  7. } catch (URISyntaxException e) {
  8. MalformedURLException malformedURLException = new MalformedURLException(e.getMessage());
  9. malformedURLException.initCause(e);
  10. throw malformedURLException;
  11. }
  12. }
  13. return url;
  14. }

代码示例来源:origin: javaee/metro-jax-ws

  1. public static URL getEncodedURL(String urlStr) throws MalformedURLException {
  2. URL url = new URL(urlStr);
  3. String scheme = String.valueOf(url.getProtocol()).toLowerCase();
  4. if (scheme.equals("http") || scheme.equals("https")) {
  5. try {
  6. return new URL(url.toURI().toASCIIString());
  7. } catch (URISyntaxException e) {
  8. MalformedURLException malformedURLException = new MalformedURLException(e.getMessage());
  9. malformedURLException.initCause(e);
  10. throw malformedURLException;
  11. }
  12. }
  13. return url;
  14. }

代码示例来源:origin: com.android.tools/common

  1. @NonNull
  2. public static File urlToFile(@NonNull URL url) throws MalformedURLException {
  3. try {
  4. return new File(url.toURI());
  5. }
  6. catch (IllegalArgumentException e) {
  7. MalformedURLException ex = new MalformedURLException(e.getLocalizedMessage());
  8. ex.initCause(e);
  9. throw ex;
  10. }
  11. catch (URISyntaxException e) {
  12. return new File(url.getPath());
  13. }
  14. }

代码示例来源:origin: org.apache.activemq/activemq-optional

  1. protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
  2. // need to remove options from uri
  3. URI uri;
  4. try {
  5. uri = URISupport.removeQuery(location);
  6. } catch (URISyntaxException e) {
  7. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  8. cause.initCause(e);
  9. throw cause;
  10. }
  11. return new HttpsClientTransport(asTextWireFormat(wf), uri);
  12. }
  13. }

代码示例来源:origin: org.apache.activemq/activemq-optional

  1. protected Transport createTransport(URI location, WireFormat wf) throws IOException {
  2. TextWireFormat textWireFormat = asTextWireFormat(wf);
  3. // need to remove options from uri
  4. URI uri;
  5. try {
  6. uri = URISupport.removeQuery(location);
  7. } catch (URISyntaxException e) {
  8. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  9. cause.initCause(e);
  10. throw cause;
  11. }
  12. return new HttpClientTransport(textWireFormat, uri);
  13. }

代码示例来源:origin: org.apache.activemq/activemq-all

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws IOException {
  3. TextWireFormat textWireFormat = asTextWireFormat(wf);
  4. // need to remove options from uri
  5. URI uri;
  6. try {
  7. uri = URISupport.removeQuery(location);
  8. } catch (URISyntaxException e) {
  9. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  10. cause.initCause(e);
  11. throw cause;
  12. }
  13. return new HttpClientTransport(textWireFormat, uri);
  14. }

代码示例来源:origin: org.apache.activemq/activemq-osgi

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws IOException {
  3. TextWireFormat textWireFormat = asTextWireFormat(wf);
  4. // need to remove options from uri
  5. URI uri;
  6. try {
  7. uri = URISupport.removeQuery(location);
  8. } catch (URISyntaxException e) {
  9. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  10. cause.initCause(e);
  11. throw cause;
  12. }
  13. return new HttpClientTransport(textWireFormat, uri);
  14. }

代码示例来源:origin: org.apache.activemq/activemq-http

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
  3. // need to remove options from uri
  4. URI uri;
  5. try {
  6. uri = URISupport.removeQuery(location);
  7. } catch (URISyntaxException e) {
  8. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  9. cause.initCause(e);
  10. throw cause;
  11. }
  12. return new HttpsClientTransport(asTextWireFormat(wf), uri);
  13. }
  14. }

代码示例来源:origin: org.apache.activemq/activemq-all

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
  3. // need to remove options from uri
  4. URI uri;
  5. try {
  6. uri = URISupport.removeQuery(location);
  7. } catch (URISyntaxException e) {
  8. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  9. cause.initCause(e);
  10. throw cause;
  11. }
  12. return new HttpsClientTransport(asTextWireFormat(wf), uri);
  13. }
  14. }

代码示例来源:origin: org.apache.activemq/activemq-http

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws IOException {
  3. TextWireFormat textWireFormat = asTextWireFormat(wf);
  4. // need to remove options from uri
  5. URI uri;
  6. try {
  7. uri = URISupport.removeQuery(location);
  8. } catch (URISyntaxException e) {
  9. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  10. cause.initCause(e);
  11. throw cause;
  12. }
  13. return new HttpClientTransport(textWireFormat, uri);
  14. }

代码示例来源:origin: org.apache.activemq/activemq-osgi

  1. @Override
  2. protected Transport createTransport(URI location, WireFormat wf) throws MalformedURLException {
  3. // need to remove options from uri
  4. URI uri;
  5. try {
  6. uri = URISupport.removeQuery(location);
  7. } catch (URISyntaxException e) {
  8. MalformedURLException cause = new MalformedURLException("Error removing query on " + location);
  9. cause.initCause(e);
  10. throw cause;
  11. }
  12. return new HttpsClientTransport(asTextWireFormat(wf), uri);
  13. }
  14. }

相关文章