Developing an Intellij Idea plugin to read a java file
I am new to Intellij idea plugin development and I want to develop a simple plugin using the Intellij Idea platform sdk to read the contents of a java class and print in the concole using the plugin. Even though I searched for resources I could not find any related to creating plugins to read files! How can I do it?
请先登录再写评论。
Hi,
IDEA maintains it's own file system, `VirtualFileSystem`. I guess the best place to start is to check how to create custom actions here
`https://github.com/JetBrains/intellij-sdk-docs/blob/master/tutorials/action_system/working_with_custom_actions.md`
Anna