- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在运行以下代码时遇到异常:
JAXBContext context = JAXBContext.newInstance(TestClassesType.class , TestClassType.class);
Unmarshaller um = context.createUnmarshaller();
System.out.println("XMLFILE == " + xmlFilePath);
JAXBElement tcstJaxb = (JAXBElement) um.unmarshal(new FileReader(xmlFilePath));
异常:
Exception in thread "main" javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"test-class"). Expected elements are <{}test-classes>
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.handleEvent(UnmarshallingContext.java:647)
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:243)
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:238)
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader.reportUnexpectedChildElement(Loader.java:105)
我在代码段中指定了 TestClassesType.class 和 TestClassType.class : JAXBContext context = JAXBContext.newInstance(TestClassesType.class , TestClassType.class);
但仍然当某些 xml 以 test-classes 开头时,它能够解码它,但以 test-class 开头的类,它无法解码它并抛出上述异常。使用的类:测试类类型
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "test-classesType", propOrder = {
"testClass"
})
public class TestClassesType {
@XmlElement(name = "test-class")
protected List<TestClassType> testClass;
/**
* Gets the value of the testClass property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the testClass property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTestClass().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TestClassType }
*
*
*/
public List<TestClassType> getTestClass() {
if (testClass == null) {
testClass = new ArrayList<TestClassType>();
}
return this.testClass;
}
}
测试类类型:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "test-classType", propOrder = {
"content"
})
public class TestClassType {
@XmlElementRef(name = "test-method", type = JAXBElement.class, required = false)
@XmlMixed
protected List<Serializable> content;
@XmlAttribute(name = "name")
protected String name;
/**
* Gets the value of the content property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the content property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getContent().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
* {@link JAXBElement }{@code <}{@link TestMethodType }{@code >}
*
*
*/
public List<Serializable> getContent() {
if (content == null) {
content = new ArrayList<Serializable>();
}
return this.content;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
我有一些以测试类开头的 xml,还有一些以测试类标记开头的 xml。我想允许这两者。有什么办法可以实现这一点吗?
如此生成的 ObjectFactory 类如下:
@XmlRegistry
public class ObjectFactory {
private final static QName _TestClasses_QNAME = new QName("", "test-classes");
private final static QName _TestClassTypeTestMethod_QNAME = new QName("", "test-method");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.jaxb.scenario
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link TestClassesType }
*
*/
public TestClassesType createTestClassesType() {
return new TestClassesType();
}
/**
* Create an instance of {@link ParamsType }
*
*/
public ParamsType createParamsType() {
return new ParamsType();
}
/**
* Create an instance of {@link TestCaseType }
*
*/
public TestCaseType createTestCaseType() {
return new TestCaseType();
}
/**
* Create an instance of {@link TestClassType }
*
*/
public TestClassType createTestClassType() {
return new TestClassType();
}
/**
* Create an instance of {@link AssertType }
*
*/
public AssertType createAssertType() {
return new AssertType();
}
/**
* Create an instance of {@link TestMethodType }
*
*/
public TestMethodType createTestMethodType() {
return new TestMethodType();
}
/**
* Create an instance of {@link AssertsType }
*
*/
public AssertsType createAssertsType() {
return new AssertsType();
}
/**
* Create an instance of {@link ParamType }
*
*/
public ParamType createParamType() {
return new ParamType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TestClassesType }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "test-classes")
public JAXBElement<TestClassesType> createTestClasses(TestClassesType value) {
return new JAXBElement<TestClassesType>(_TestClasses_QNAME, TestClassesType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TestMethodType }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "test-method", scope = TestClassType.class)
public JAXBElement<TestMethodType> createTestClassTypeTestMethod(TestMethodType value) {
return new JAXBElement<TestMethodType>(_TestClassTypeTestMethod_QNAME, TestMethodType.class, TestClassType.class, value);
}
}
最佳答案
test-class
元素是否对应于 ObjectFactory
类(或者您用 @XmlRegistry
注释的类)上的 @XmlElementDecl
注释?如果是这样,您需要在引导 JAXBContext
时包含它。
JAXBContext context = JAXBContext.newInstance(ObjectFactory.class);
如果您从 XML 架构生成模型,则 ObjectFactory
类是您唯一需要传入以引导 JAXBContext
的类。
关于java - 线程 "main"中出现异常 "javax.xml.bind.UnmarshalException: unexpected element"但需要同时允许测试类和测试类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27904351/
因此,当使用“智能”时,当我想创建一个类时,它还会创建另外两个函数(不确定我是否正确调用了它们): class main { private: /* data */ public: m
我确实知道 C/C++ 和 Java 中使用的 main() 方法,但由于 main() 是用户定义的(因为 main() 中的代码是由用户定义的,它不能是预定义的方法) & 在 C/C++ 中,ma
这个问题在这里已经有了答案: What is a NullPointerException, and how do I fix it? (12 个答案) 关闭 7 年前。 我意识到这是一个常见错误,
您好,我是 jquery 和 javascript 的新手。我想做的是我有 3 个独立的 Main-Divs ex main-div1, main-div2, main-div-3 它们都是一个大盒子
我知道以前曾有人问过有关此错误的问题,但我的情况与其他人不同。我正在编写计算数据集的平均值、方差和标准差的代码。编译代码时我没有收到任何错误,但是当我尝试运行代码时,我收到如下错误: Exceptio
这个问题已经有答案了: What should main() return in C and C++? (19 个回答) Why is the type of the main function in
无效的输入流不起作用 - 每次我给出负的月份值时,它都会返回此异常。 代码: import java.util.Scanner; public class Main { public stat
我在 main() 中调用 main(),递归 10 次。现在,在使用 gdb (bt/backtrace) 进行调试时,我没有看到 main() 的多个帧。为什么? #include int mai
我有一个类 - A - 没有方法,只有主要方法。 在其他类(class) - B - 我需要调用那个 main.做什么最好?从使用的资源、时间和功耗以及效率来看? 从类 A 创建一个“a”对象并执行
鉴于 documentation以及对 earlier question 的评论,根据要求,我制作了一个最小的可重现示例,演示了这两个语句之间的区别: my %*SUB-MAIN-OPTS = :na
我有一个在 main 中声明并初始化的数组,名为 Edges。 我还在 main 中声明了一些访问名为 Edges 的数组的函数。 代码编译并运行。 为什么它有效?我认为 main 中声明的变量不是全
如果定义内容主要部分的最具语义性和可访问性的方式是标准,那么使用 ARIA 地标似乎是多余的元素。正在添加 role="main"到元素真的有必要吗? 最佳答案 并非所有现代浏览器都已经映射了 ari
我是 C 语言的新手(6 小时前开始),我知道有大量的在线引用资料,我应该(并且将会)详细查看,但现在,我有紧急情况需要帮助。我有一个包含以下文件的项目文件夹: boundary_val.c boun
我正在审查许多不同的 Java 程序,并试图弄清楚如何只更新一次而不是两次更新对程序名称的引用。有没有办法在单个终端命令中使用变量? :S 我试图改进的命令是这样的形式: javac Main.jav
我已经创建了一个工作线程, Thread thread= new Thread(runnable); thread.start(); 我在工作线程中打印这个; Log.d("SessionTh
import java.awt.*; import java.awt.event.*; import java.io.*; import java.lang.*; public class Main
这是我的 Main.java,它位于服务器套接字“get().logger().tag();”之后的部分我已经在实例中添加了所有这些,我真的不确定它出了什么问题。 public class Main
我在 http://www.hackerearth.com/problem/algorithm/roys-life-cycle/ 上测试了我的程序。但是,我总是收到错误:在类 ActivityTime
我想要一个脚本来运行从模块导出的子例程,导出的子程序在脚本中作为 MAIN 运行。该子例程做了我想做的所有事情,除了它返回结果而不是打印它。 RUN-MAIN 似乎实现了我的大部分目标,但我不确定如何
java中有什么具体原因吗,main方法应该是小写字母 是的“主要”和“主要” 编译完成 public class ManiMethod { public static void main(S
我是一名优秀的程序员,十分优秀!