尝试将jforum的源代码导入eclipse,工作原理如此,但我得到上述错误“项目不能blabla ..”。
我找到了几条关于这个特定错误消息的帖子,但到目前为止他们都没有帮助我。
以下是错误消息的屏幕截图,我相信它很容易修复,因为它只是配置(或缺少配置)的问题:
http://i.imgur.com/sVtYorM.png
我刚刚安装了Eclipse,我想我可能忘记设置Tomcat服务器了?或者是否有需要在某处复制的实际java库?
提前thx;)答案 0 :(得分:1)
你的classpath似乎期望变量TOMCAT_HOME
如果预期此变量,则可以在
中定义该变量 int docCount = -1;
int i = 0;
List<Document> Documents = new List<Document>();
string[] sourceFiles = new string[1];
foreach (string file in filesCollected)
{
string bc;
string bcValue;
if (Settings.Default.barcodeEngine == "Leadtools")
{
bc = BarcodeReader.ReadBarcodeSymbology(file);
bcValue = "PatchCode";
}
else
{
bc = BarcodeReader.ReadBacrodes(file);
bcValue = "009";
}
if (bc == bcValue)
{
if(Documents.Count > 0)
{
Array.Clear(sourceFiles, 0, sourceFiles.Length);
Array.Resize<string>(ref sourceFiles, 1);
i = 0;
}
sourceFiles[i] = file ;
i++;
Array.Resize<string>(ref sourceFiles, i + 1);
Documents.Add(new Document(sourceFiles, true,""));
docCount++;
}
else
{
if (Documents.Count > 0)
{
sourceFiles[i] = file;
i++;
Array.Resize<string>(ref sourceFiles, i + 1);
Documents[docCount].fullFilePath = sourceFiles;
}
}
}
添加名为TOMCAT_HOME的新变量,路径应该是您的tomcat主目录。缺少的所有这些罐子都应该出现在tomcat lib文件夹中。
答案 1 :(得分:0)
从截图中我发现你将使用不再有效的类路径变量
Goto Eclipe - &gt;窗口 - &gt;偏好 - &gt; Java - &gt;构建路径 - &gt;类路径变量
检查上面的jar文件是否存在。如果需要,添加/编辑。