0

我正在尝试编译 Google 在协议缓冲区上给出的这个示例: https ://developers.google.com/protocol-buffers/docs/javatutorial

它带有一个 ListPeople.java 和 AddPerson.java 文件以及一堆导入。问题是我收到“无法解析导入 com.example”,如此屏幕截图所示:

http://postimg.org/image/67whg6a57/full/

This is the full path of the import com.example java file:
http://postimg.org/image/wexoc4sez/full/

and where all of my files are located:
http://postimg.org/image/4veseacpn/full/

我尝试执行以下操作:

Project->Clean
File->Refresh
Property->Java build path->add external JAR:
http://postimg.org/image/xjrqhievv/full/

这些都没有工作。问题是什么?

4

2 回答 2

2

所以这似乎是您的项目中缺少的代码。如果您按Shift-Ctrl-T并输入地址簿,它在那里吗?

如果它不存在,则它不是从文件中指定的示例 .proto 文件生成Google on the protocol buffers

于 2013-10-25T07:12:22.773 回答
0

您正在尝试添加 Java文件,就好像它们是库一样 - 它们不是。

将“src”目录添加为源路径(Java 构建路径设置中最左侧的选项卡)。或者,如果这已经是源路径,请尝试在包资源管理器中刷新它。无论哪种方式,您绝对不希望将源文件作为库...

于 2013-10-25T07:11:39.190 回答