问题标签 [java-package]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
633 浏览

java - 在 MVC 包中收到 Java 错误“找不到符号”

抱歉,我确定这是我正在做的一些新手尝试,但我有一个 MVC 模式包,它不断向我返回此错误:

如果你能告诉我我在这里做错了什么,我将不胜感激......提前致谢!我在下面添加了我的类 hrms MVC gui 的主包的代码,供您参考。

0 投票
1 回答
94 浏览

java - 在生产环境中限制java包

如果我有两个包com.application.* 并且com.test.我不想com.test.*.在生产中运行包,但需要com.test.*在 uat 中运行包。我怎样才能做到这一点?

0 投票
1 回答
63 浏览

liferay - Liferay 中的“内核”包是什么?

我正在写一个 Liferay 钩子。

在 Liferay 中引用 Java 类时,Eclipse 中的“组织导入”对话框通常会为我提供com.liferay.portal.TheClasscom.liferay.portal.kernel.TheClass.

我应该根据哪些标准选择其中一个?
有一般规律吗?这个内核
背后的理念是什么?

0 投票
2 回答
140 浏览

java - 仅包含一个包的 jar 文件

我想包含一个 jar 文件,该文件仅由我的项目中的 1 个包使用。

|____package1
|____package2
|------------class1
|------------class2
|------------newjar

这是因为我正在尝试运行需要此 jar 中包含的特定类的单元测试。
我不希望这个 jar 用于其他包,因为我已经编辑了这个 jar 并为我的项目的其余部分创建了另一个 jar。
不确定这是否允许。发现了一些关于在运行时包含 jar 的文章,但这不是我想要的,至少这就是我的感受。

0 投票
1 回答
111 浏览

matlab - 如何在 Matlab 中使用泛型类(MIJ 包/Miji)

有谁知道如何使用 MIJ 包在 Matlab 中使用泛型类?

每次我尝试使用泛型类时,都会出现“未定义类”错误,而其他类没有给我任何问题。特别是,我想使用 imglib2 库中的 ComplexRealFloatConverter 类的实例来获取 FFT 的实际值。

谢谢大家!

0 投票
1 回答
1825 浏览

groovy - 使用 IntelliJ IDEA 构建 Gradle 中的 java 包名称问题

我有一个 Gradle 项目,其中我在同一个包中有 groovy 和 java 类。构建工作正常,但是当我在 InteliJ 13 中导入项目时,IDE 告诉我,只有在 java 文件中我的包名称错误。

带包装

并且没有错误

带包装

如何消除此错误?

0 投票
1 回答
357 浏览

linux - MapReduce 包错误

//这3个程序需要什么包???如何将这 3 个程序合并为一个程序?如何在eclipse中使用这3个程序做mapreduce?

请帮我成功运行这个程序

操作系统:Linux

面临的异常:

  1. 对于 MaxPYear.MaxPubYearReducer 类型,方法 TryParseInt(String) 未定义

2.Job类型中的setInputFormatClass(Class)方法不适用于参数(Class)

映射器代码:

减速机代码:

驱动程序代码:

0 投票
1 回答
43 浏览

java - 查看调用导入的位置

例如,如果我import java.util.HashMap;在一个类中执行一些快捷方式,我希望 Eclipse 显示我在该类中实例化 HashMap 和调用 HashMap 方法的行。

0 投票
3 回答
11764 浏览

java - Java 错误:包“x”不存在

所以我在 Linux 中有一个文件树,看起来像这样:

  • ~/keyboard_warriors/
    • 测试/
      • 配置测试.java
    • ConfigParser.class
    • 配置解析器.java

问题是当我尝试输入终端时:
javac ConfigTest.java

我得到错误:

这真的让我很烦恼,我在任何地方都找不到任何答案。如果你能解决我的问题,我会是一个非常幸福的人。

0 投票
1 回答
354 浏览

java - Android R file and Java Sub-package: R can not be resolved to a variable

To better organize my classes, I made a few sub-packages (that is an extension in the package's hierarchical name structure).

But to my surprise I have been getting an R cannot be resolved to a variable for like every resource I am trying to use from this project's R file.

The Eclipse's quick fixes options do give the option of importing the particular R file for the package (which contains the sub-packages), But the question is that in the package that I created in the Eclipse's New Application Project wizard, I did not need to import the R file at all, and I always thought it contained the resources for this entire project.

But now after creating sub-packages, I need to import it. SO asking out of curiosity, since a sub-package is nothing (in Java) but an extension in the hierarchical name structure of the package itself (reference), then why doesn't the R file automatically get included in the sub-packages?