1

我正在尝试在 OSB(版本 11.1.3)中创建一个 java 调用函数来解码 URL。我可以java.net.URLDecoder.decode(data, "UTF-8");在程序中使用,但 OSB 函数给出以下错误(当输入和返回类型为字符串时)

<Jun 11, 2014 7:43:30 AM UTC> <Error> <OSB Transform> <BEA-382516> <Failed to evaluate expression for callout to java method "public static java.lang.String com.help.sachinProject.ttttt.test(java.lang.String)". Argument index: 1, exception: Value of type 'org.apache.xmlbeans.impl.values.XmlAnyTypeImpl' cannot be type-cast to 'java.lang.String'>
<Jun 11, 2014 7:43:35 AM UTC> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 10.232.24.59:49,359 during the configured idle timeout of 5 secs>

所以我应该输入和返回类型为XmlAnyTypeImpl。如何将 String 转换为 XmlAnyTypeImpl (XmlAnyTypeImpl 在 xmlbeans.jar 中可用)

这是我的新程序

import org.apache.xmlbeans.impl.values.XmlAnyTypeImpl;
public class XMLFormatDecode {

XMLFormatDecode(){
super();
}

   public static String getValue(XmlAnyTypeImpl data)    
       {
       String decoded = java.net.URLDecoder.decode(data.toString(), "UTF-8");
       return decoded;                                         
       }


public static void main(String[] args) throws UnsupportedEncodingException {
new XMLFormatDecode();
System.out.println("Result main - "+XMLFormatDecode.getValue(null));
       }
}

XmlAnyTypeImpl.toString() 会起作用吗?

有人可以帮我将 String 转换为 XmlAnyTypeImpl 吗?

4

1 回答 1

2

发生错误是因为它无法传递XmlAnyType 您的静态 java 方法。您没有指定传递给 Java 方法的内容,所以我只能假设您没有正确地将其转换为正确的类型。它得到一个XmlAnyTypeImpl需要转换为其他东西的东西(字符串、整数、布尔值等)。您可以使用某种形式的 XS 构造函数调整您传递给 Java 标注的内容:

XS 构造函数

Java 标注

于 2014-06-13T16:01:39.960 回答