nimbus Questions

2

Solved

I have a Java Swing project which works fine on both Windows and Ubuntu. I did not have any Macs so I could not test it; I have used the Nimbus theme as the standard for this project. Now, recent...
Proprietor asked 24/4, 2012 at 15:43

1

Solved

The class DefaultJWKSetCache of nimbus-jose-jwt has two fields, lifespan and refreshTime. From Java docs - lifespan - The lifespan of the cached JWK set before it expires, negative means no expira...
Hecatomb asked 20/11, 2021 at 19:30

2

Solved

I have the following JWT token that I want to decode: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ik5UQXhabU14TkRNeVpEZzNNVFUxWkdNME16RXpPREpoWldJNE5ETmxaRFUxT0dGa05qRmlNUSJ9.eyJhdWQiOiJodHRwOlwvX...
Maybellemayberry asked 28/8, 2019 at 16:12

1

I am using Nimbus-JOSE-JWT library library (version 4.39). Using this library, I am trying to do local JWT token validation which pulls down JWK set from the OAuth authorization server. My code wo...
Felicitous asked 19/7, 2017 at 2:20

2

Solved

I installed Apache Storm 1.0 by following this tutorial but I am not able to access to the Storm UI from the Internet. Accessing localhost:8080 gives the following error: org.apache.storm.utils.Ni...
Displume asked 20/4, 2016 at 11:29

1

I am using nimbus-jose-jwt 5.14 and I generated RSA key pair with the following code KeyPairGenerator gen = KeyPairGenerator.getInstance("RSA"); gen.initialize(2048); KeyPair keyPair = gen.gene...
Benco asked 6/6, 2019 at 10:23

1

Solved

I'm migrating my Swing app to Java 11 to take advantage of the HiDPI display support. I'm using a Samsung monitor with resolution set to 3840x2160, scaling at 125%, with Windows 10. Although java ...
Herrah asked 4/12, 2018 at 1:47

3

Solved

So far I have this public static void main(String[] args) { try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); UIManager.getBorder("design");//change look and ...
Heth asked 16/1, 2011 at 20:1

3

I am just learning Java and still have not been able to sort out this little problem I have. My pop up Calendar uses Nimbus look and feel, but I have panels and container Jtables that use Java's lo...
Futurism asked 6/1, 2011 at 17:13

2

Solved

I'm using NimbusLookAndFeel. With this look and feel JTable's cell background are alternatively white and light grey (it depends on the row number). Now, I'm writing some custom cell renderer imple...
Extravagancy asked 4/7, 2011 at 13:2

2

Solved

I was creating an application with JTabbedPane using Nimbus look and feel I have used this code to place tabs: pane.addTab("Welcome",new ImageIcon("resources\\1.png"),mainPanel,"Takes to the welc...
Orme asked 5/11, 2013 at 10:47

1

I'm using Netbeans 8.0.2 and the Nimbus Look And Feel. At a certain point, when the vertical scroll slider becomes small, it disappears. Has anyone the same behavior or any fix for that problem? ...
Comedian asked 16/9, 2015 at 14:50

1

Solved

I have recently been attempting to convert a system to a unified look and feel (In this case Nimbus). However certain components require alteration from the defaults and I don't want to just change...
Engender asked 24/2, 2015 at 8:40

3

Solved

does anyone know how to change the colors for JProgressBar when you use Nimbus LookAndFeel?
Mir asked 24/8, 2011 at 11:5

3

I am using the Nimbus look and feel. According to this link, you should be able to achieve 3 different line styles with your JTree: While using the following code: theTree.putClientProperty("...
Submerged asked 18/2, 2011 at 15:10

4

I am using a JTable to visualize some data. One column ist destined to show boolean data through a checkbox. I achieved this by returning Boolean.class from my overriden getColumnClass() function i...
Perfunctory asked 17/4, 2013 at 7:43

1

I have used Nimbus to create rounded corners for buttons in swing referring here: Use Nimbus to give rounded corners for JButton I now want to give a 3d look to the buttons. How should I go about ...
Schizophrenia asked 4/3, 2014 at 5:31

1

I'm using the Nimbus look & feel in my swing application. Sometimes, when a dialog is showed (with dialog.setVisible(true)) the Nimbus look & feel throws the following exception: Caugth e...
Reiser asked 21/3, 2013 at 10:33

2

Solved

I'm adding icons to tabs but i want the ImageIcon fits all the tabComponent. I tried this code ImageIcon icon = new ImageIcon("images/itemtexto-off.png"); Image img = icon.getImage() ; Image n...
Avalos asked 27/8, 2013 at 14:23

1

Solved

ttf: otf: both are the same font but different fontfile types I am running Java 7 in Windows 7 According to Miguel Sousa by Adobe the bug is not in the fonts https://github.com/adobe/source-...
Thiel asked 27/8, 2013 at 9:7

2

Solved

I'm working on an app using the Nimbus Look and Feel. There's a table and one column contains buttons (using the Table Button Column from Rob Camick). That does work, but the result isn't what I ha...
Pilchard asked 12/8, 2013 at 22:10

3

Solved

How can I set text background color in JOptionPane? Image: UIManager UI = new UIManager(); UI.put("OptionPane.background", Color.white); UIManager.put("Button.background", Color.white); UI.put(...
Neill asked 29/7, 2013 at 9:18

2

Solved

Ok, I am not that versed in Java / Swing, and I am running into a problem. My application is throwing this error: "Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: Th...
West asked 22/5, 2013 at 18:4

3

Solved

I'm using the Nimbus L&F with a JTable that has a boolean (checkbox) element as one of its columns. The issue I'm having is that the boolean column does not follow the natural row background...
Kessia asked 6/7, 2011 at 19:42

3

Solved

Look at this picture : here is the code that transparent's the frame: GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gd = ge.getDefaultScreenDevice...
Kidwell asked 25/4, 2013 at 15:40

© 2022 - 2024 — McMap. All rights reserved.