MyEclipse提示:这里描述项目中遇到的问题:
The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from
required .class files
while((pos = str_source.indexOf(str_original,posStart)) >= 0)
{ *output.append(str_source.substring(posStart,pos));
output.append(str_new);
posStart = pos + lengOfold;
}
jdk版本问题在MyEclipse->window->preference->java->install JRES将jdk更改为1.6版本

2020-12-26
博客讲述了在项目中使用MyEclipse时遇到的问题,提示java.lang.CharSequence无法解析,该问题间接引用自所需的.class文件。给出的解决办法是在MyEclipse的window->preference->java->install JRES中将jdk更改为1.6版本。
374

被折叠的 条评论
为什么被折叠?



