我是使用ZK Framework进行Web应用程序开发的新手。我想通过以下步骤将ZK Project导入Eclipse:
1. From the main menu, select command File > Import.... The Import wizard opens.
2. Select General > Existing Project into Workspace and click Next.
3. Choose either Select root directory or Select archive file and click the associated Browse... to locate the directory or file containing the projects.
4. Under Projects, select the project or projects which I would like to import.
5. Click Finish to start the import.
是的,它有效,但我的ZK项目有很多错误行,因为它无法识别ZK API。
我认为这是因为我的ZK项目被认可为Java项目,而不是ZK项目。所以这个项目的类路径中不包含ZK库。
我还尝试了以下步骤来导入我的ZK项目:
1. File -> Import,
2. Expand ZK folder -> Click Import ZK Archive
3. Click "Directory Import" button to find my ZK Project directory
4. Finish
但它不起作用。错误消息:您尝试导入的存档不可接受
答案 0 :(得分:0)
ZK Studio插件不会自动识别现有ZK项目中的ZK库,并将其与正确的ZK库版本相关联。如果现有的ZK项目不是使用ZK Studio支持创建的,则会发生这种情况。您可以通过以下步骤重新关联ZK库。
要从Java项目更改为ZK项目,您可能需要将以下行添加到位于项目根目录中的.project文件中。
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
...
<natures>
<nature>org.zkoss.eclipse.zknature</nature>
...
</nature>
...
</projectDescription>
您还尝试将ZK项目导入为ZK包。 ZK Archive是指ZK Library的zip文件,例如从www.zkoss.org/download/zk下载的文件。