我已经下载了用于开发jdevstudio11117install.exe
的Oracle JDeveloper 11.1.1.7(ADF/MAF Mobile application
),我想将JDeveloper版本升级到最新版本。
可以升级/更新最新版本吗?或者我是否需要新近下载最新版本。请建议。
答案 0 :(得分:2)
concatenatedLine.append(line);
String fullLine = concatenatedLine.toString();
if (fullLine.contains("\"")) {
StringBuffer sb = new StringBuffer();
Matcher matcher = Pattern.compile("\"([^\"]+)\"").matcher(fullLine);
while (matcher.find()) {
matcher.appendReplacement(sb, matcher.group().replaceAll("\\s+", ""));
formattedStrings.add(sb.toString());
}else
formattedStrings.add(fullLine);
获取 Oracle Mobile
应用程序框架扩展,使您可以进行移动
发展。答案 1 :(得分:1)