When I am in a .java file the unused code is usually grayed out or has a green underline saying this code will probably (probably because of some weird JNI/Reflection corner cases) be unused. But I have this project with thousands of Java files and I want to find ALL INSTANCES of such probable-unused codes. How can I do that in IntelliJ IDEA? Just use Analyze | Inspect Code Analyze | Inspect
当我在一个.java文件中时,未使用的代码通常是灰色的或者有一个绿色下划线,表示这段代码可能会(可能是因为一些奇怪的JNI / Reflection角落案例)未被使用。 但是我有这个项目有成千上万的Java文件,我想查找所有可能的未使用代码的实例。 我如何在IntelliJ IDEA中做到这一点? 只需使用Analyze | Inspect Code 在启用适当检查的情况下Analyze | Inspect Code ( 声明 冗余组中未使用的声明 )。 使用IntelliJ 11 CE,您
I'm working on a program that will need to store data somewhere on the machine persistently, so that when I close the program the data doesn't disappear. The data is something that I can't hash because the program needs to retrieve it's value. This database needs to be super secure so that only the program itself can access this storage and nothing else. Now, SQL seems pretty
我正在研究一个程序,它需要持久地在机器的某个地方存储数据,这样当我关闭程序时,数据不会消失。 数据是我不能散列的东西,因为程序需要检索它的值。 这个数据库需要超级安全,所以只有程序本身才能访问这个存储,而没有别的。 现在,对于我来说SQL似乎很不安全,如果你有权访问SQL,就可以访问其中包含的每个数据库,唯一的办法就是加密我插入的一些数据,但这会导致存储另一个密钥为了那个原因。 这是我需要存储的结
For my School project I had to show that I can utilize file handling within a program. For this I made a very simple login process that you can create an account on that writes a username and password to a text file located in the resource folder. Obviously this has no security at all as it wasn't designed to be secure just to showcase file handling however my teacher has said that I should
对于我的学校项目,我必须证明我可以在程序中利用文件处理。 为此,我做了一个非常简单的登录过程,您可以创建一个帐户,将用户名和密码写入位于资源文件夹中的文本文件。 显然这没有任何安全性,因为它不是为了展示文件处理而设计的,但是我的老师曾经说过,我应该尝试为文件添加一些加密以获得更好的分级。 我做了一些研究,许多人都在推荐DES。 我遇到的问题是我没有太多的时间留给我的项目,需要尽快完成。 使用DES似
With NetBeans (Java), I am having problems in JLabel. I have assigned an image as the icon of that JLabel. Problem - 1st: I want to display some text (eg - logout) below that icon (image). How to do this? Problem - 2nd: I want to display some text when mouse is rolled over that JLabel. What should I do? So , please guys tell me how to these things by writing code. 1. Create a JPa
使用NetBeans(Java),我在JLabel中遇到了问题。 我已经为该JLabel分配了一个图像作为图标。 问题 - 第1次: 我想在该图标(图像)下方显示一些文本(例如 - 注销)。 这个怎么做? 问题 - 第二: 当鼠标滚过该JLabel时,我想显示一些文本。 我该怎么办? 所以,请大家通过编写代码告诉我如何处理这些事情。 1。 创建一个包含两个JLabel的JPanel 。 这样您就可以控制内部组件的布局。 我使用BoxLayout和参
Sorry about the title being vague but I couldn't think of what I wanted to do in the title. Anyway, for text over image, I have used a JLabel text and added it to the Icon. JLabel icon = new JLabel(new ImageIcon); icon.setLayout(new GridBagLayout()); add(icon); JLabel text = new JLabel(); text.setText(language.getString("translation")); text.setLocation(10, 10);
对于标题模糊不清,但我想不出我想在标题中做什么。 无论如何,对于图像上的文本,我使用了JLabel文本并将其添加到图标。 JLabel icon = new JLabel(new ImageIcon); icon.setLayout(new GridBagLayout()); add(icon); JLabel text = new JLabel(); text.setText(language.getString("translation")); text.setLocation(10, 10); text.setSize(text.getPreferredSize()); icon.add(text);
i'm trying to create a JLabel that has text aligned left and icon aligned right, i tried this code: _ip = new JLabel(ip); _ip.setFont(boldFont); _ip.setBounds(5, 0, 100, 50); _ip.setIcon(images.ipBan); _ip.setBorder(BorderFactory.createLineBorder(Color.black, 1)); _ip.setHorizontalTextPosition(SwingConstants.LEFT); add(_ip); And this is what i get: The red image shows the actual image ali
我试图创建一个JLabel文本左对齐和图标对齐的权利,我试过这段代码: _ip = new JLabel(ip); _ip.setFont(boldFont); _ip.setBounds(5, 0, 100, 50); _ip.setIcon(images.ipBan); _ip.setBorder(BorderFactory.createLineBorder(Color.black, 1)); _ip.setHorizontalTextPosition(SwingConstants.LEFT); add(_ip); 这就是我得到的: 红色图像显示实际图像对齐,灰色显示我想要图像的位置。 如果我添加 _ip.setAlignmentX(J
I'm using a Jlabel with an icon in swing. I chose an image from my computer as the icon and I can't find a way to make it resize automatically to the size of the Jlabel. Because the image I want is much bigger then the size of the Jlabel i'm only seeing a small part of it. Is there any way to solve this problem so I won't need to resize each image before importing it to the pro
我在挥杆中使用带有图标的Jlabel。 我从我的计算机中选择了一个图像作为图标,我找不到一种方法将它自动调整为Jlabel的大小。 因为我想要的图像要大得多,那么Jlabel的尺寸我只能看到它的一小部分。 有没有办法解决这个问题,所以我不需要在将每个图像导入到项目之前调整其大小? 可能是你的LayoutManger /缺少那些干扰,因为JLabel应根据显示的内容返回正确的大小。 请张贴SSCCE以显示具体问题。 尽管无论大图像还是
I want to use java JLabel with an Icon in custom size on my GUI. like this : I used this code to change size of original Icon : ImageIcon imageIcon = (ImageIcon) jLabel1.getIcon();// new ImageIcon( "Play-Hot-icon.png"); ImageIcon thumbnailIcon = new ImageIcon(getScaledImage(imageIcon.getImage(), 25 , 25)); jLabel1.setIcon(thumbnailIcon); and here is code for resize image privat
我想在我的GUI上使用带有自定义大小的Icon的JLabel。 喜欢这个 : 我用这段代码来改变原始图标的大小: ImageIcon imageIcon = (ImageIcon) jLabel1.getIcon();// new ImageIcon( "Play-Hot-icon.png"); ImageIcon thumbnailIcon = new ImageIcon(getScaledImage(imageIcon.getImage(), 25 , 25)); jLabel1.setIcon(thumbnailIcon); 这里是调整图像大小的代码 private Image getScaledImage(Image srcImg, int
I want to have a clickable icon (an ImageIcon object) inside a JLabel. How can I add a MouseListener or any ActionListener just to that Icon. Is there any other way to know if the icon has been clicked? I use the setIcon() method for the JLabel to set its icon. Thanks. 您可以在容器中放置两个单独的JLabel,第一个使用文本,第二个使用图标,并将鼠标侦听器添加到图标JLabel。 这种方法非常黑,但为我
我想在JLabel中有一个可点击的图标(一个ImageIcon对象)。 我怎样才能添加一个MouseListener或任何ActionListener只是该图标。 有没有其他的方式知道图标是否被点击? 我使用setIcon()方法为JLabel设置其图标。 谢谢。 您可以在容器中放置两个单独的JLabel,第一个使用文本,第二个使用图标,并将鼠标侦听器添加到图标JLabel。 这种方法非常黑,但为我工作。 JLabel.addMouseListener(new MouseAdapter(){ p
I have a simple Jlabel element with text and icon setting the background changes the full label colour. I want to be able to only render the background colour on the text section of the label, ie - to have separate backgrounds/foregrounds for the icon and text. Selecting/deselecting the label will flip the colour behind the icon and text. Is this possible to do this by just extending JLabel
我有一个带有文本和图标的简单Jlabel元素 设置背景会更改完整的标签颜色。 我想只能在标签的文本部分渲染背景颜色,即 - 为图标和文本分别设置背景/前景。 选择/取消选择标签将翻转图标和文本后面的颜色。 这可能是通过扩展JLabel来实现的,如果是的话,我应该自定义哪些方法? 我的另一种想法是创建一个包含两个独立标签元素的面板,其中一个带有图标,另一个带有文本。 这看起来有点凌乱,在我开始之前,我想知道是否