- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.parseWithoutValidating()
方法的一些代码示例,展示了XmlTransformUtility.parseWithoutValidating()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlTransformUtility.parseWithoutValidating()
方法的具体详情如下:
包路径:org.fcrepo.utilities.XmlTransformUtility
类名称: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();
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility类的一些代码示例,展示了XmlTransformUtility类的具体用法。这些代码示例主要来源于G
本文整理了Java中org.fcrepo.utilities.Zip类的一些代码示例,展示了Zip类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一
本文整理了Java中org.fcrepo.utilities.xml.XercesXmlSerializers类的一些代码示例,展示了XercesXmlSerializers类的具体用法。这些代码示例
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.parseWithoutValidating()方法的一些代码示例,展示了XmlTransform
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.returnDocumentBuilder()方法的一些代码示例,展示了XmlTransformU
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.returnTransformerFactory()方法的一些代码示例,展示了XmlTransfo
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.borrowDocumentBuilder()方法的一些代码示例,展示了XmlTransformU
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.parseNamespaceAware()方法的一些代码示例,展示了XmlTransformUti
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.getTransformer()方法的一些代码示例,展示了XmlTransformUtility.
本文整理了Java中org.fcrepo.utilities.XmlTransformUtility.borrowTransformerFactory()方法的一些代码示例,展示了XmlTransfo
本文整理了Java中org.fcrepo.utilities.Zip.zip()方法的一些代码示例,展示了Zip.zip()的具体用法。这些代码示例主要来源于Github/Stackoverflow/
本文整理了Java中org.fcrepo.utilities.xml.XercesXmlSerializers.writeConsoleNoDocType()方法的一些代码示例,展示了XercesXm
本文整理了Java中org.fcrepo.utilities.xml.XercesXmlSerializers.writeXmlNoSpace()方法的一些代码示例,展示了XercesXmlSeria
本文整理了Java中org.fcrepo.utilities.xml.XercesXmlSerializers.writePrettyPrint()方法的一些代码示例,展示了XercesXmlSeri
本文整理了Java中org.fcrepo.utilities.xml.XercesXmlSerializers.writeMgmtNoDecl()方法的一些代码示例,展示了XercesXmlSeria
我是一名优秀的程序员,十分优秀!