Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
4 replies
56 views

Is there a Cron expression to run on either 2 or 3 days of the month, e.g. run once on either 11th, 12th or 13th
Dinga's user avatar
  • 21
3 votes
3 answers
75 views

My instructor gave us this question for homework: 11. Select the TRUE statement. a) This code will not compile.The error will be: local variable c may not have been initialized b) ...
CSP.AT.MASH's user avatar
Best practices
0 votes
2 replies
73 views

Suppose I have these classes: class Tool { String method1() { return "ok"; } } class RareSpecialTool extends Tool { /** * @...
JayC667's user avatar
  • 2,699
Advice
0 votes
1 replies
50 views

I am using a Telegram bot in a Spring Boot application and I want to automate messaging for my system users. Is it possible to: Automatically create a group chat for each user using a Telegram bot ...
Leo Dumangas's user avatar
0 votes
1 answer
74 views

I had a Java application in JDK17 which uses the IIOP corba protocol for JMS message connection listener and processing those further. Now upgrade the JDK17 to JDK25 , with that i am getting below ...
Navin a.s's user avatar
  • 416
0 votes
0 answers
43 views

I'm trying to fix this problem from some days now, I have 'gradle for java' and 'extension pack for java' extensions installed, but when I try to create a new gradle java project, it tryies to create ...
eddie felson's user avatar
-3 votes
1 answer
53 views

I am having an issue while trying to upgrade my application from using Jackson v2 to Jackson v3: My application has a class that contains a reference to an object of type NodeProperties, a class which ...
mmo's user avatar
  • 4,469
-3 votes
0 answers
64 views

I have a JTable in a JFrame that uses an AbstractTableModel extension, all built with NetBeans 28. When the table loads I find through debug that the model has one listener. Later when I try to delete ...
kirt's user avatar
  • 1
0 votes
1 answer
50 views

I am using Google Guava to switch the content pane in my JavaFX app. @Subscribe public void handleChangeViewDataModel(ChangeViewEventDataModel event) { try { FXMLLoader loader = new ...
Marko's user avatar
  • 59
0 votes
0 answers
44 views

I have a user which has been granted to use MS Graph API. I wrote a code in Java which is using the MicrosoftGraphClient and makes simple lookup to find an user by email. The code is runing fine just ...
fascynacja's user avatar
  • 3,256
Advice
0 votes
4 replies
74 views

package lanta.utils; import java.util.HashMap; import java.util.Scanner; public class MenuConstructor { public HashMap<Integer, String> options; public int option; public ...
DuskFlare13's user avatar
0 votes
0 answers
63 views

I'm just attempting to work with Java for the first time, using Eclipse. Every time I try to open Eclipse however, I'm met with an error exit code. Initially it was 13 , and I followed the steps on ...
Seth brown's user avatar
Advice
0 votes
1 replies
41 views

I am researching how deep linking works across different Android browsers. I noticed that using the intent:// syntax allows one browser to launch another or trigger specific app actions. For example: ...
Cyb3rCr0wCC's user avatar
1 vote
0 answers
78 views

In my Java application I needed to implement a "hierarchical HashMap", meaning: I have a hierarchy of HashMaps (each containing name-value pairs) which are connected in a tree-like fashion ...
mmo's user avatar
  • 4,469
2 votes
0 answers
103 views

I understand that starting from Java 8, HashMap converts buckets with high collision into red-black trees to improve worst-case performance from O(n) to O(log n). However, when I intentionally create ...
Manan Vyas's user avatar

15 30 50 per page
1
2 3 4 5
127781