如何修复:“文件太大:__,显示第一个的只读预览:__”在Intellij IDEA?

lymnna71  于 2023-08-03  发布在  IntelliJ IDEA
关注(0)|答案(3)|浏览(360)

我试图在Intellij IDEA中查看一个大文件,但遇到了错误:“文件太大:30.1 MB,显示前2.56 MB的只读预览”。
我已经看到了这个问题的一些以前的答案,包括:
IntelliJ can't display big file?
IntelliJ Idea 12 - Java file is too large for editor
问题是我找不到要编辑的idea.max.intellisense.filesize或idea.max.content.load.filesize。
单击“帮助”时|在Intellij中编辑自定义属性,它说“文件'~/Library/Preferences/IdeaC2018.3/idea.properties'不存在。创造?”
当我创建文件并添加“idea.max.intellisense.filesize=2500”和“idea.max.content.load.filesize=20000”时,它没有任何效果。事实上,我得到了错别字。
我也看到了https://intellij-support.jetbrains.com/hc/en-us/articles/206544869,我也没有IDE_HOME目录。
我不知道该怎么走,有人能帮忙吗?

  • 谢谢-谢谢
2hh7jdfx

2hh7jdfx1#

Jet Brains添加了一个很好的IDE调优文档。
您需要在“idea.properties”文件中设置参数

idea.max.content.load.filesize=512000

字符串
在这里查看更多。

6mw9ycah

6mw9ycah2#

所以我对这个问题的解决是正确的。我只需要重新启动IntelliJ,然后它就开始工作了。

b91juud3

b91juud33#

新的方法是改变它并重新启动IDE:

在最新产品版本中更改平台属性的建议方法来自帮助|编辑自定义特性菜单。此操作将在IDE config目录中创建.properties文件的副本,并打开一个编辑器,您可以在其中对其进行更改。如果无法启动IDE以访问此菜单,请按如下所述手动编辑该文件。
您可以在IDE_HOME\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.content.load.filesize=512000
idea.max.intellisense.filesize=512000

字符串
https://intellij-support.jetbrains.com/hc/en-us/articles/206544869

相关问题