类'java.io.'在JRE仿真库INTELLIJ IDEA中不存在
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类'java.io.'在JRE仿真库INTELLIJ IDEA中不存在相关的知识,希望对你有一定的参考价值。
我正在使用IntelliJ IDEA 15.0.4开发一个GWT项目。该项目编译并运行。但是IntelliJ一直告诉我JRE Emulation Library中没有java类文件。
请帮我!我的maven pom.xml中缺少什么东西吗?
我们是:hml:
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<verbose>true</verbose>
<fork>true</fork>
<executable>/Library/Java/JavaVirtualMachines/jdk1.8.0_73.jdk/Contents/Home/bin/javac</executable>
<compilerVersion>1.8</compilerVersion>
</configuration>
</plugin>
Timesheet.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='Timesheet'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User' />
<inherits name="com.vaadin.polymer.Elements"/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<inherits name='com.google.gwt.user.theme.standard.Standard' />
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Other module inherits -->
<!-- Specify the app entry point class. -->
<entry-point class='com.campus.client.Timesheet' />
<!-- Specify the paths for translatable code -->
<source path='client' />
<source path='shared' />
<!-- <inherits name="com.google.gwt.user.theme.standard.Standard"/> -->
<inherits name="com.google.gwt.user.theme.clean.Clean"/>
<!-- For production, most teams prefer to set the default log level to `OFF` -->
<inherits name="com.allen_sauer.gwt.log.gwt-log-OFF" />
<!-- For development, a default of `DEBUG` is recommended -->
<!-- <inherits name="com.allen_sauer.gwt.log.gwt-log-DEBUG" /> -->
</module>
除非您拥有IntelliJ的完整版本,否则我强烈建议您使用Eclipse + GWT插件进行GWT开发。
这是GWT Jre模拟类的参考,这里的所有内容都适用于客户端:http://www.gwtproject.org/doc/latest/RefJreEmulation.html#Package_java_io
在您的特定情况下,似乎IntelliJ也找不到String类,这指出了比GWT相关更深层次的配置问题。
当我在Arch Linux中安装Oracle JDK 9并将其用作项目SDK时,我似乎遇到了这个问题。卸载Oracle JDK 9并安装OpenJDK 8后,将其设置为项目SDK,不再发生错误。我想知道GWT是不是很好地支持Java 9或Oracle JDK。
另一个可能的错误原因是我可能错误地设置了SDK。首先,我将SDK路径指向/usr/lib/jvm/default-runtime
,但后来我将其更改为实际路径(/usr/lib/jvm/java-8-openjdk
)。
以上是关于类'java.io.'在JRE仿真库INTELLIJ IDEA中不存在的主要内容,如果未能解决你的问题,请参考以下文章
未经检查的强制转换:'java.io.Serializable'为'java.util.ArrayList “
尝试在空对象引用[duplicate]上调用虚方法'java.io.File android.content.Context.getCacheDir()'
ubuntu中出现:程序 'java' 已包含在下列软件包中的解决方法
导入项目后 出现Unbound classpath container: 'JRE System Library [jdk1.6.0_04]' in project '项目名&