重複の可能性:
ジェネリック型Tのクラスインスタンスを取得する方法
テンプレートのT
JAXBContext jaxbContext = JAXBContext.newInstance(T.class);
T.classをコンパイルできません。リフレクションが必要ですか?
public void ConvertObjectToXML(String path, T bobject)
{
//Convert XML to Object
File file = new File(path);
JAXBContext jaxbContext = JAXBContext.newInstance(T.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
T customer2 = (T) jaxbUnmarshaller.unmarshal(file);
System.out.println(customer2);
}