博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Intellij IDEA]File size exceeds configured limit
阅读量:6224 次
发布时间:2019-06-21

本文共 915 字,大约阅读时间需要 3 分钟。

hot3.png

    这两天尝试使用 IDEA, 发现一个问题File size exceeds configured limit (2560000). Code insight features not available.

原因:

    IDEA对能关联的文件大小做了限制,主要是为了保护内存,默认值为2500kb,对于一般的java文件也够用了,只是这里我用protocbuf生成的java文件过大,达到3M多。

    其设置在...JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin 目录下的idea.properties文件。

#---------------------------------------------------------------------# Maximum file size (kilobytes) IDE should provide code assistance for.# The larger file is the slower its editor works and higher overall system memory requirements are# if code assistance is enabled. Remove this property or set to very large number if you need# code assistance for any files available regardless their size.#---------------------------------------------------------------------# idea.max.intellisense.filesize=2500idea.max.intellisense.filesize=5000

    默认值为2500kb

解决方法:

            这里我将其修改为5000kb,我的最大文件大小为3M多,解决问题。

转载于:https://my.oschina.net/shipley/blog/510762

你可能感兴趣的文章
PostConstruct
查看>>
MyEclipse------快速读取特定目录下的文件的内容(字节输入流)
查看>>
Linq查询操作之排序操作
查看>>
Spring 4支持的Java 8新特性一览
查看>>
RHEL6.2下挂载光驱安装软件
查看>>
YYCache 源码分析(二)
查看>>
2016年第9本:系统之美
查看>>
framebuff 显示子系统
查看>>
php手册杂记
查看>>
Yii2 定时任务创建(Console 任务)
查看>>
lombok+slf4j+logback SLF4J和Logback日志框架详解
查看>>
PHP 单例模式继承的实现方式
查看>>
思维杂谈(1)
查看>>
【Java深入研究】3、HashMap源码解析(jdk 1.7)
查看>>
1102 采药 2005年NOIP全国联赛普及组
查看>>
WebSockets Tutorial(教程一)WebSockets简介
查看>>
仿支付宝/微信的password输入框效果GridPasswordView解析
查看>>
【复制虚拟机】虚拟机复制后无ip的问题
查看>>
002-数据库命名开发规范
查看>>
vue、vuex、iview、vue-router报错集锦与爬坑记录
查看>>