How to open a file larger than 20 MB in Intellij?

If I try to open a text file larger than 20MB, I get the message: File <path> is too large (21.97MB). Where could I relax this restriction?


Found by inspecting intellij source code: you have to edit the property idea.max.intellisense.filesize in idea.properties located in idea_home/bin .

The maximum file size to load = max(20MB, <value of idea.max.intellisense.filesize>)

链接地址: http://www.djcxy.com/p/92458.html

上一篇: 在调用`localtime`之前,Perl脚本何时需要调用`tzset`?

下一篇: 如何在Intellij中打开一个大于20 MB的文件?