gpt4 book ai didi

org.fcrepo.utilities.XmlTransformUtility.parseWithoutValidating()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 00:37:05 26 4
gpt4 key购买 nike

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

XmlTransformUtility.parseWithoutValidating介绍

暂无

代码示例

代码示例来源:origin: org.fcrepo/fcrepo-common

public static void parseWithoutValidating(InputStream in, DefaultHandler handler)
  throws SAXException, IOException {
  parseWithoutValidating(new InputSource(in), handler);
}

代码示例来源:origin: fcrepo3/fcrepo

public static void parseWithoutValidating(InputStream in, DefaultHandler handler)
  throws SAXException, IOException {
  parseWithoutValidating(new InputSource(in), handler);
}

代码示例来源:origin: org.fcrepo/fcrepo-server

public void parse(String username, String password) throws IOException,
    FinishedParsingException {
  this.username = username;
  this.password = password;
  try {
    value = new StringBuffer();
    authenticated = null;
    namedAttributes = new Hashtable<String, Set<?>>();
    foundUser = false;
    XmlTransformUtility.parseWithoutValidating(m_xmlStream, this);
  } catch (FinishedParsingException fpe) {
    throw fpe;
  } catch (Throwable e) {
    e.printStackTrace();
    throw new IOException("Error parsing XML: " + e.getMessage());
  }
}

代码示例来源:origin: fcrepo3/fcrepo

public void parse(String username, String password) throws IOException,
    FinishedParsingException {
  this.username = username;
  this.password = password;
  try {
    value = new StringBuffer();
    authenticated = null;
    namedAttributes = new Hashtable<String, Set<?>>();
    foundUser = false;
    XmlTransformUtility.parseWithoutValidating(m_xmlStream, this);
  } catch (FinishedParsingException fpe) {
    throw fpe;
  } catch (Throwable e) {
    e.printStackTrace();
    throw new IOException("Error parsing XML: " + e.getMessage());
  }
}

代码示例来源:origin: fcrepo3/fcrepo

public ServerConfiguration parse() throws IOException {
  m_serverParameters = new ArrayList<Parameter>();
  m_moduleConfigurations = new ArrayList<ModuleConfiguration>();
  m_datastoreConfigurations = new ArrayList<DatastoreConfiguration>();
  try {
    XmlTransformUtility.parseWithoutValidating(m_xmlStream, this);
    return new ServerConfiguration(m_serverClassName,
                    m_serverParameters,
                    m_moduleConfigurations,
                    m_datastoreConfigurations);
  } catch (Exception e) {
    e.printStackTrace();
    throw new IOException("Error parsing XML: " + e.getMessage());
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

public ServerConfiguration parse() throws IOException {
  m_serverParameters = new ArrayList<Parameter>();
  m_moduleConfigurations = new ArrayList<ModuleConfiguration>();
  m_datastoreConfigurations = new ArrayList<DatastoreConfiguration>();
  try {
    XmlTransformUtility.parseWithoutValidating(m_xmlStream, this);
    return new ServerConfiguration(m_serverClassName,
                    m_serverParameters,
                    m_moduleConfigurations,
                    m_datastoreConfigurations);
  } catch (Exception e) {
    e.printStackTrace();
    throw new IOException("Error parsing XML: " + e.getMessage());
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

public DCFields(InputStream in)
    throws RepositoryConfigurationException, ObjectIntegrityException,
    StreamIOException {
  try {
    XmlTransformUtility.parseWithoutValidating(in, this);
  } catch (SAXException saxe) {
    throw new ObjectIntegrityException("Parse error parsing DC XML Metadata: "
        + saxe.getMessage());
  } catch (IOException ioe) {
    throw new StreamIOException("Stream error parsing DC XML Metadata: "
        + ioe.getMessage());
  }
}

代码示例来源:origin: fcrepo3/fcrepo

public DCFields(InputStream in)
    throws RepositoryConfigurationException, ObjectIntegrityException,
    StreamIOException {
  try {
    XmlTransformUtility.parseWithoutValidating(in, this);
  } catch (SAXException saxe) {
    throw new ObjectIntegrityException("Parse error parsing DC XML Metadata: "
        + saxe.getMessage());
  } catch (IOException ioe) {
    throw new StreamIOException("Stream error parsing DC XML Metadata: "
        + ioe.getMessage());
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

public ObjectFields(String[] fieldNames, InputStream in)
    throws UnrecognizedFieldException,
    RepositoryConfigurationException, ObjectIntegrityException,
    StreamIOException {
  this(fieldNames);
  try {
    XmlTransformUtility.parseWithoutValidating(in, this);
  } catch (SAXException saxe) {
    throw new ObjectIntegrityException("Parse error parsing ObjectFields: "
        + saxe.getMessage());
  } catch (IOException ioe) {
    throw new StreamIOException("Stream error parsing ObjectFields: "
        + ioe.getMessage());
  }
}

代码示例来源:origin: fcrepo3/fcrepo

public ObjectFields(String[] fieldNames, InputStream in)
    throws UnrecognizedFieldException,
    RepositoryConfigurationException, ObjectIntegrityException,
    StreamIOException {
  this(fieldNames);
  try {
    XmlTransformUtility.parseWithoutValidating(in, this);
  } catch (SAXException saxe) {
    throw new ObjectIntegrityException("Parse error parsing ObjectFields: "
        + saxe.getMessage());
  } catch (IOException ioe) {
    throw new StreamIOException("Stream error parsing ObjectFields: "
        + ioe.getMessage());
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

private DefaultHandler parse(InputSource xml, DefaultHandler eventHandler)
    throws ObjectIntegrityException, RepositoryConfigurationException,
    GeneralException {
  try {
    // XMLSchema validation via SAX parser
    XmlTransformUtility.parseWithoutValidating(xml, eventHandler);
    return eventHandler;
  } catch (SAXException e) {
    String msg =
        "ServiceMapper returned SAXException. "
            + "The underlying exception was a "
            + e.getClass().getName() + ".  "
            + "The message was " + "\"" + e.getMessage() + "\"";
    throw new ObjectIntegrityException(msg);
  } catch (Exception e) {
    String msg =
        "ServiceMapper returned error. "
            + "The underlying error was a "
            + e.getClass().getName() + ".  "
            + "The message was " + "\"" + e.getMessage() + "\"";
    e.printStackTrace();
    throw new GeneralException(msg);
  }
}

代码示例来源:origin: fcrepo3/fcrepo

private DefaultHandler parse(InputSource xml, DefaultHandler eventHandler)
    throws ObjectIntegrityException, RepositoryConfigurationException,
    GeneralException {
  try {
    // XMLSchema validation via SAX parser
    XmlTransformUtility.parseWithoutValidating(xml, eventHandler);
    return eventHandler;
  } catch (SAXException e) {
    String msg =
        "ServiceMapper returned SAXException. "
            + "The underlying exception was a "
            + e.getClass().getName() + ".  "
            + "The message was " + "\"" + e.getMessage() + "\"";
    throw new ObjectIntegrityException(msg);
  } catch (Exception e) {
    String msg =
        "ServiceMapper returned error. "
            + "The underlying error was a "
            + e.getClass().getName() + ".  "
            + "The message was " + "\"" + e.getMessage() + "\"";
    e.printStackTrace();
    throw new GeneralException(msg);
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

public void validate(PID pid, String dsId, InputStream content)
    throws ValidationException {
  try {
    m_rootRDFFound = false;
    m_descriptionCount = 0;
    m_withinDescription = false;
    m_depth = 0;
    m_doURI = pid.toURI();
    if (!dsId.equals(RELS_EXT) && !dsId.equals(RELS_INT)) {
      throw new ValidationException("Relationships datastream ID must be RELS-EXT or RELS-INT ("
          + dsId + ")");
    }
    m_dsId = dsId;
    XmlTransformUtility.parseWithoutValidating(content, this);
  } catch (Exception e) {
    throw new ValidationException(dsId + " validation failed: "
        + e.getMessage(), e);
  }
}

代码示例来源:origin: fcrepo3/fcrepo

public void validate(PID pid, String dsId, InputStream content)
    throws ValidationException {
  try {
    m_rootRDFFound = false;
    m_descriptionCount = 0;
    m_withinDescription = false;
    m_depth = 0;
    m_doURI = pid.toURI();
    if (!dsId.equals(RELS_EXT) && !dsId.equals(RELS_INT)) {
      throw new ValidationException("Relationships datastream ID must be RELS-EXT or RELS-INT ("
          + dsId + ")");
    }
    m_dsId = dsId;
    XmlTransformUtility.parseWithoutValidating(content, this);
  } catch (Exception e) {
    throw new ValidationException(dsId + " validation failed: "
        + e.getMessage(), e);
  }
}

代码示例来源:origin: fcrepo3/fcrepo

/**
 * {@inheritDoc}
 */
public void deserialize(InputStream in,
            DigitalObject obj,
            String encoding,
            int transContext) throws ObjectIntegrityException,
    StreamIOException, UnsupportedEncodingException {
  logger.debug("Deserializing " + m_format.uri + " for transContext: "
      + transContext);
  try {
    XmlTransformUtility.parseWithoutValidating(in, new METSContentHandler(m_format, m_translator, transContext, encoding, obj));
  } catch (IOException ioe) {
    throw new StreamIOException("Low-level stream IO problem occurred "
        + "while SAX parsing this object.");
  } catch (SAXException se) {
    throw new ObjectIntegrityException("METS stream was bad : "
        + se.getMessage());
  }
  try {
    m_translator.normalizeDatastreams(obj,
                         transContext,
                         encoding);
  } catch (UnsupportedEncodingException e) {
    throw new ObjectIntegrityException(e.getMessage(),e);
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

/**
 * {@inheritDoc}
 */
public void deserialize(InputStream in,
            DigitalObject obj,
            String encoding,
            int transContext) throws ObjectIntegrityException,
    StreamIOException, UnsupportedEncodingException {
  logger.debug("Deserializing " + m_format.uri + " for transContext: "
      + transContext);
  try {
    XmlTransformUtility.parseWithoutValidating(in, new METSContentHandler(m_format, m_translator, transContext, encoding, obj));
  } catch (IOException ioe) {
    throw new StreamIOException("Low-level stream IO problem occurred "
        + "while SAX parsing this object.");
  } catch (SAXException se) {
    throw new ObjectIntegrityException("METS stream was bad : "
        + se.getMessage());
  }
  try {
    m_translator.normalizeDatastreams(obj,
                         transContext,
                         encoding);
  } catch (UnsupportedEncodingException e) {
    throw new ObjectIntegrityException(e.getMessage(),e);
  }
}

代码示例来源:origin: org.fcrepo/fcrepo-server

/**
 * {@inheritDoc}
 */
public void deserialize(InputStream in,
            DigitalObject obj,
            String encoding,
            int transContext) throws ObjectIntegrityException,
    StreamIOException, UnsupportedEncodingException {
  logger.debug("Deserializing {} for transContext: {}",
      m_format.uri, transContext);
  // make resettable and pool these handlers?
  FOXMLContentHandler handler =
      new FOXMLContentHandler(m_format, m_translator, transContext, encoding, obj);
  try {
    XmlTransformUtility.parseWithoutValidating(in, handler);
  } catch (IOException ioe) {
    throw new StreamIOException("low-level stream io problem occurred "
        + "while sax was parsing this object.");
  } catch (SAXException se) {
    throw new ObjectIntegrityException("FOXML IO stream was bad : "
        + se.getMessage(), se);
  }
  logger.debug("Just finished parse.");
  if (!handler.rootElementFound()) {
    throw new ObjectIntegrityException("FOXMLDODeserializer: Input stream is not valid FOXML."
        + " The digitalObject root element was not detected.");
  }
  m_translator.normalizeDatastreams(obj, transContext, encoding);
}

代码示例来源:origin: org.fcrepo/fcrepo-server

try {
  TableSpecDeserializer tsd = new TableSpecDeserializer();
  XmlTransformUtility.parseWithoutValidating(in, tsd);
  tsd.assertTableSpecsConsistent();
  return tsd.getTableSpecs();

代码示例来源:origin: fcrepo3/fcrepo

/**
 * {@inheritDoc}
 */
public void deserialize(InputStream in,
            DigitalObject obj,
            String encoding,
            int transContext) throws ObjectIntegrityException,
    StreamIOException, UnsupportedEncodingException {
  logger.debug("Deserializing {} for transContext: {}",
      m_format.uri, transContext);
  // make resettable and pool these handlers?
  FOXMLContentHandler handler =
      new FOXMLContentHandler(m_format, m_translator, transContext, encoding, obj);
  try {
    XmlTransformUtility.parseWithoutValidating(in, handler);
  } catch (IOException ioe) {
    throw new StreamIOException("low-level stream io problem occurred "
        + "while sax was parsing this object.");
  } catch (SAXException se) {
    throw new ObjectIntegrityException("FOXML IO stream was bad : "
        + se.getMessage(), se);
  }
  logger.debug("Just finished parse.");
  if (!handler.rootElementFound()) {
    throw new ObjectIntegrityException("FOXMLDODeserializer: Input stream is not valid FOXML."
        + " The digitalObject root element was not detected.");
  }
  m_translator.normalizeDatastreams(obj, transContext, encoding);
}

代码示例来源:origin: fcrepo3/fcrepo

try {
  TableSpecDeserializer tsd = new TableSpecDeserializer();
  XmlTransformUtility.parseWithoutValidating(in, tsd);
  tsd.assertTableSpecsConsistent();
  return tsd.getTableSpecs();

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com