Package com.xiaoleilu.hutool.exceptions

Examples of com.xiaoleilu.hutool.exceptions.UtilException


      Source source = new DOMSource(doc);
      final Transformer xformer = TransformerFactory.newInstance().newTransformer();
      xformer.setOutputProperty(OutputKeys.ENCODING, charset);
      xformer.transform(source, new StreamResult(writer));
    } catch (Exception e) {
      throw new UtilException("Trans xml document to string error!", e);
    } finally {
      FileUtil.close(writer);
    }
  }
View Full Code Here


    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = null;
    try {
      builder = dbf.newDocumentBuilder();
    } catch (Exception e) {
      throw new UtilException("Create xml document error!", e);
    }
    Document doc = builder.newDocument();
    doc.appendChild(doc.createElement(rootElementName));
   
    return doc;
View Full Code Here

   */
  public static URL getURL(File configFile) {
    try {
      return configFile.toURI().toURL();
    } catch (MalformedURLException e) {
      throw new UtilException("Error occured when get URL!", e);
    }
  }
View Full Code Here

    try {
      final URL absoluteUrl = new URL(baseUrl);
      final URL parseUrl = new URL(absoluteUrl, relativePath);
      return parseUrl.toString();
    } catch (MalformedURLException e) {
      throw new UtilException(e);
    }
  }
View Full Code Here

   
    File file = new File(path);
    if(file.isDirectory()) {
      return file.listFiles();
    }
    throw new UtilException(StrUtil.format("Path [{}] is not directory!", path));
  }
View Full Code Here

            }
          }
        }
      }
    } catch (Exception e) {
      throw new UtilException(StrUtil.format("Can not read file path of [{}]", path), e);
    }
    return paths;
  }
View Full Code Here

  public static Set<String> localIpv4s() {
    Enumeration<NetworkInterface> networkInterfaces = null;
    try {
      networkInterfaces = NetworkInterface.getNetworkInterfaces();
    } catch (SocketException e) {
      throw new UtilException(e.getMessage(), e);
    }
   
    if(networkInterfaces == null) {
      throw new UtilException("Get network interface error!");
    }
   
    final HashSet<String> ipSet = new HashSet<String>();
   
    while(networkInterfaces.hasMoreElements()) {
View Full Code Here

  public static String toAbsoluteUrl(String absoluteBasePath, String relativePath) {
    try {
      URL absoluteUrl = new URL(absoluteBasePath);
      return new URL(absoluteUrl ,relativePath).toString();
    } catch (Exception e) {
      throw new UtilException(StrUtil.format("To absolute url [{}] base [{}] error!", relativePath, absoluteBasePath), e);
    }
  }
View Full Code Here

      //如果用户未指定配置文件,使用默认
      init(null, null);
    }
   
    if(dbSetting == null) {
      throw new UtilException("No setting found, please init it!");
    }
    if(group == null) {
      group = StrUtil.EMPTY;
    }
View Full Code Here

    if(null != setting) {
      try {
        // 连接池参数注入
        setting.toObject(dds);
      } catch (SettingException e) {
        throw new UtilException("Read Druid setting error!", e);
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.xiaoleilu.hutool.exceptions.UtilException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.