我正在尝试使用scriptella复制oracle的列,我想将它们插入到结合了scriptella和janino的ArrayList中,以便使用它们并在以后进行比较,
这里我做了什么
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE etl SYSTEM "http://scriptella.javaforge.com/dtd/etl.dtd">
<etl>
<description>
test script Pour table article
</description>
<connection id="in" driver="oracle"
url="jdbc:oracle:thin:@localhost:1521:XE" user="IPTECH" password="IPTECH" />
<connection id="out" driver="postgresql"
url="jdbc:postgresql://localhost:5432/gemodb" user="postgres"
password="maher" />
<connection id="janino" driver="janino" />
<query connection-id="in">
select code,libelle from TMP_STRUCTURE;
<script connection-id="janino">
import java.util.*;
import java.io.*;
Boolean result=false;
ArrayList<String> obj = new ArrayList <String>();
String code =get("code").toString();
obj.add(code);
</script>
</query>
</etl>
我遇到了以下问题
Unable to parse document: org.xml.sax.SAXParseException; systemId: file:/C:/Users/MHT/eclipse-workspace/Scriptella/test.xml; lineNumber: 23; columnNumber: 5; The element type "String" must be terminated by the matching end-tag "</String>".
任何帮助都会受到赞赏
答案 0 :(得分:1)
您必须替换
ArrayList<String> obj = new ArrayList <String>();
与
java.util.ArrayList < String> obj = new ArrayList java.util.ArrayList < String>();