使用linux下的language support,提示fix broken package first
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用linux下的language support,提示fix broken package first相关的知识,希望对你有一定的参考价值。
我想删了language support 重新安装,但是用apt-get remove 说找不到文件,应该怎么做呢
参考技术A 在软件中心删除。追问软件中心里面不知道该删哪一个啊,没有找到language support,软件命中含有language的又有好几个
参考技术B 你用的是哪个版本的linux呢?追问backtract5
追答这个版本我倒是没用过,只是好像是用来蹭网还行。不了解,懂的大虾们给他解决一下!
本回答被提问者采纳[转]IDEA 出现编译错误 Multi-catches are not supported a this language level 解决方法
转自 http://blog.csdn.net/qq465235530/article/details/53897538
首先出现这种问题是说明正在使用低版本jdk编译其本身不支持的语法,出现这种情况有三种解决办法,
1、首先检查"File" -> "Project Structure" -> "Project settings" -> "Project" -> "Project language level"(如下图)是不是已经设置成支持某种语法的jdk版本,如果已设置还不行请看第2步;
2、检查project下面的module,如果有多个,那么单独查看相关的(如果不清楚哪个相关就认为是所有)module的“language level”(如下图)是不是都设置成支持某种语法的jdk版本,如果还不行请看第3步;
3.终极办法就是在pom.xml的<plugins>节点里添加一下配置 <source>和<target>配需要的jdk版本
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
最后还有设置一下java compiler的jdk版本,"File" -> "Settings" -> "Build,Execution,Deployment" -> "Compiler" -> "javaCompiler" 右边区域的Project bytecode version 和Per-moudle bytecode version 设置成相应的JDK版本。
这是本人遇到这个问题的解决办法,亲测没问题,仅供参考!!!
以上是关于使用linux下的language support,提示fix broken package first的主要内容,如果未能解决你的问题,请参考以下文章
Linux-ubunbu-the language support is not installed completely
Linux系统汉化时碰到the application language support has closed unexpectedly
Supporting Right-to-Left Languages
IDEA:Lambda expression are not supported at language level ‘5‘
关于idea中使用lamb表达式报错:ambda expressions are not supported at this language level