与 .net 和 java 的 Web 服务通信
我可以将 C#.net 中的这段代码替换为 java
[WebMethod]
public int SendSMS( string Message, ref string MessageReturn) {
string _res = string.Empty;
_res = "defalt message";
MessageReturn = _res;
return 0;
}
我不知道 java 中的引用字符串类型吗
can i replace this code in C#.net to java
[WebMethod]
public int SendSMS( string Message, ref string MessageReturn) {
string _res = string.Empty;
_res = "defalt message";
MessageReturn = _res;
return 0;
}
i dont know ref string type in java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没那么容易,因为我们无法在方法中传递对 String 的引用以及该位置的值。
解决方法:将字符串包装在字符串数组中
Not that easy, because we can't pass a reference to a String and the value at that location in a method.
Workaround: wrap the String in a String array