52 questions
0
votes
1
answer
131
views
Discord bot not sending messages
I am a beginner to using discord.js and cannot figure out why my bot isn't replying with a message whenever I send one on the server it's on. Discord says it's online and "Logged in!" comes ...
0
votes
1
answer
128
views
For maven dependencies from local repository, Eclipse can't open Javadoc in the browser
When from within Eclipse I try to open Javadoc in a browser, using the button "Open attached Javadoc in a browser" in the pop-up Javadoc window, for example, for JAssert that is in the local ...
1
vote
2
answers
377
views
Instantiate an ArrayList of Circles
so the question basically says to Use a for loop to add 10 Circles to the ArrayList each with a random radius in the range of 2-5 and Print a table of all of the Circles in the ArrayList. You can use ...
0
votes
1
answer
878
views
How to loop this program 3x for my Salary Calculator Java
So I’m trying to write a Java program that displays 3 employees gross pay factoring in overtime pay. I was able to make a program with a while loop but am confused as to get this to print for each ...
3
votes
0
answers
587
views
What is the current status of JavaHelp Java API?
While reviewing old Java project code, which relied on JavaHelp Java API to provide help functionality, it was unclear what the current status of this API is.
The Java Help API spec is defined as part ...
0
votes
0
answers
99
views
App can no longer recieve data from firebase when i try to update it
So I have a app that is supposed to read and write data to googles firebase and its been working well for the past few years.
However a few days ago I wanted to update the app again so I finished my ...
1
vote
0
answers
148
views
How can I open javahelp from javafx?
I have used JavaHelp with swing and I could do
try {
URL helpURL = this.getClass().getResource("/help/help.hs");
HelpSet helpset = new HelpSet(null, helpURL);
...
0
votes
1
answer
101
views
Problem with SQL code while using Java DB. Saying parentheses is foreign
I am new to java. I am trying to create two SQL codes to create a table in Java DB (I am using NetBeans 12.5). I set it up how I thought it should be set up but I am still getting an error.
CREATE ...
0
votes
2
answers
288
views
i have a coding problem with a loop task, more info below
I have a task to create a program using only for loop and math functions that input N amount of cars and each iteration gets the time it took the car to reach the end, the final output needs to be the ...
0
votes
0
answers
27
views
how to extract with Java lang on Eclipse
I think I have understood what a subclass and a superclass are, but I am having issues with creating them inside a Java file: do I have to create e new project for every class? Let's say I have two ...
2
votes
1
answer
131
views
discogs post https://api.discogs.com/marketplace/listings? returned a response status of 422 null
I'm trying to post api.discogs.com/marketplace/listings?... in java.
When I try to make a newlisting post, the result is "returned a response status of 422 null".
"422 Unprocessable ...
0
votes
1
answer
110
views
JavaHelp Swing wrong rendering of HTML vertical-align
I know that the JavaHelp HTML rendering is known to be poor/outdated but I would like to know if there is a workaround exists to fix the following problem. The following HTML fragment
<html>
...
0
votes
2
answers
63
views
Accessing texts files in Java
I am trying to access text files in Java, however, I don't know how to do to that and apply it to a 2D array. I have done it before for a String in a pig latin coding assignminet
e.x :
public ...
0
votes
1
answer
133
views
Add a button menu to javahelp
In my program, I'm using javahelp with helpbroker: all the swing components of the window are automatically generated and positioned.
I would like custom the helpbroker to add a button bar at the ...
0
votes
0
answers
490
views
Making a help section with JavaFX?
I want to make a help section for my JavaFX program. I know for Swing there is JavaHelp, which allows you to design your help system using HTML files and it generates an index, table of contents and a ...
0
votes
0
answers
381
views
java.lang.IllegalArgumentException: URI is not hierarchical when run jhindexer
I need to generate a help system for my application using the JavaHelp package. I have downloaded the project from the github repository and I have compiled it both with the GNU make tool and with ...
0
votes
1
answer
232
views
docbkx-maven-plugin very slow
I transferred an existing docbook project from ANT (using dopus framework) to the docbkx-maven-plugin. After some troubles I got the output right, but the performance is very slow. The processing took ...
0
votes
1
answer
76
views
Javahelp relative URL between master helpset and subhelpsets
I am using Javahelp and dynamically merging multiple helpsets. Does anyone know what the relative URL would be if I want to create a link from a page in a subhelpset to a page in the master helpset?
0
votes
1
answer
433
views
JavaHelp: load helpset from external jar file
I'm working with a standalone java program that uses the javahelp system for the help files. The program has a bunch of built-in 'modules' that the user can select at runtime to perform various ...
0
votes
1
answer
65
views
I wnt to run JavaHelp both from IDE and jar file
I have an application (DrawFBP) which has a Help facility. built using JavaHelp. I actually had it working for several years on the Eclipse IDE, but I had never tested it running in the jar file. ...
2
votes
0
answers
759
views
javahelp indexer for full text search
I have a problem with the full text search database generation in javaHelp. In order to generate the db I have to execute a command from a batch file:
java -cp jhall.jar com.sun.java.help.search....
0
votes
1
answer
215
views
JavaHelp: is it possible to load help from a location outside the classpath?
I would like the ability to load javahelp content from a custom location outside the classpath. This location could change during application's life and could be on a shared network device.
...
0
votes
1
answer
208
views
JavaHelp does the indexer need the content of the html pages to index?
I have successfully created an online help in my application using JavaHelp.
At the first step I have created the example from JavaHelp so I had the typical menu with animal information.
In the next ...
1
vote
0
answers
69
views
Runtime Error in JavaHelp
This is an issue that I have been running into for months and have been unable to solve it. We have continued to develop our JavaHelp; however, we are at a point where this needs to be fixed and I am ...
2
votes
0
answers
584
views
JavaHelp, creating the DefaultSearchEngine gives error
Am using JavaHelp with a java desktop application.
The application is developed with the NetBeans 7 IDE and pc with Windows 7 OS.
I have the topic files created as HTML files , helpset and the ...
0
votes
1
answer
895
views
Implementing JavaHelp Search with the NetBeans IDE
I have integrated javahelp online documentation
into my desktop application with the NetBeans IDE.
I have the topic files and the navigation files as well.
The javahelp folder was not installed ...
0
votes
1
answer
2k
views
Downloading JavaHelp library
I am developing a desktop application with java swing in NetBeans
I want to include an online help into the application by
integrating the javahelp library into the system.
The meta data for the ...
3
votes
1
answer
1k
views
Integrating Java Help System with Windows application
I have a Java application for Windows, to which I would like to add a help system.
I have heard about Java help system but I don't have much idea on that and I would like to have to some guidelines ...
1
vote
1
answer
346
views
Java newInstance call for JavaHelp crashing with createUI error on second and subsequent calls
In my app I am dynamically loading the jhall file for JavaHelp, so my code uses reflection. The weird thing is that it works fine for the first call, and my JavaHelp screens show up fine, with all ...
1
vote
0
answers
183
views
Disable main window but show module
My goal is to launch a NetBeans platform application without showing the main window. I know its possible and have done so succeessfully by following this tutorial: http://java.dzone.com/news/how-...
2
votes
0
answers
607
views
Oracle Help for Java integration in Swing application
I want to integrate Oracle Help for Java (ohj) in my Java Swing application to show its components in my custom window. Any ideas? I think there is no source code on the web.
3
votes
1
answer
206
views
Need Help to trigger the helpKey F1 JavaHelp based on selected tree node (Eclipse-Java)
I need help on JavaHelp. The context-sensitive help offers, window-level, field-level (as in passing the component).
But i need to activate the JavaHelp when user press the HelpKey F1 or JavaHelp ...
0
votes
1
answer
218
views
Embedding Swing components in JavaHelp pages in an OSGi environment?
JavaHelp is a library written by Sun that displays HTML help pages in a Swing application. JavaHelp allows embedding Swing components into its HTML pages:
<html>
<object classid="java:javax....
0
votes
1
answer
348
views
bnd wrap on jh.jar (JavaHelp) does not work
I am using bnd wrap, a tool that I have used many times before to convert a normal jar file into an OSGI bundle. I am having trouble with jh.jar from JavaHelp. I only get a warning saying, "1: ...
2
votes
1
answer
4k
views
Using JavaHelp for end user documentation on NetBeans based application, tools or plugins to make it easier?
The shorter top section of this post is what I'm trying to do. The second portion is what's been done so far. It's really long, but you should be able to see what I'm doing from the top piece here. ...
4
votes
2
answers
4k
views
Javahelp viewers (or alternatives) [closed]
I'm trying to integrate searchable help into my Java (Swing) application. I'm using docbook right now to generate pdf help, and I know it can generate JavaHelp. I think the default viewer for JavaHelp ...
1
vote
1
answer
765
views
java help file is not getting(.hs)
I created one class (javahelp) in my project, for getting java help file as when I'm clicking a help content (menu item). I updated installed javahelp-2.0_05 in directory
C:\Program Files\javahelp-2....
4
votes
1
answer
728
views
Can Java's Desktop.browse provide an HTML Target in order to reuse a browser window?
I'm moving an application from using javax.help's browser to the user's desktop web browser, but I'm wondering how to prevent the user from winding up with many windows/tabs open as they click to ...
1
vote
2
answers
1k
views
findHelpSet return a null URL while integrating JavaHelp system inside my application using Eclipse
I'm trying to include JavaHelp inside my application developed under Eclipse.
I did the following things:
Download and extract the JavaHelp library in a sub-folder of my project workspace.
Added the ...
0
votes
2
answers
181
views
Is there a way to import HTML into JavaHelp?
I'm trying to automate JavaHelp generation from a book (HTML) already on the web to bundle as a NetBeans module. Is there a way to automate the conversion into JavaHelp format?
8
votes
2
answers
483
views
Embedding .avi in JavaHelp?
I'm creating some help content for an application (built on NetBeans), and thought it would be useful in some cases to be able do show a tutorial video within the JavaHelp or have a link to open a ...
1
vote
2
answers
843
views
JavaHelp Frame icon
How can I set the JFrame Icon (top left of the outer JFrame) of the JavaHelp Window. I know how to set the category and topic Images (toc.xml), but I don't succceed in setting the JFrame Icon.
I ...
0
votes
2
answers
1k
views
how to debug ClassLoader not finding a file in Java
I'm trying to integrate JavaHelp system inside my project developped using Eclipse.
I have the following code extracted from an example:
private HelpSet getHelpSet(String helpsetfile) {
...
4
votes
2
answers
339
views
where is JSR-97 (JavaHelp)
Since the Sun->Oracle transition, the search for java-documentation has been a mess. I'm looking to find the official JSR-97 specs:
http://jcp.org/aboutJava/communityprocess/final/jsr097/index.html
...
2
votes
2
answers
640
views
Unable to parse JavaHelp's toc.xml
I wrote an XML parser for JavaHelp's toc.xml file in order to intercept some attributes I use in the tocitem tag that are ignored by JavaHelp. Here's what toc.xml looks like:
<?xml version='1.0' ...
0
votes
1
answer
268
views
Automatic Generation of a JavaHelp Index File
I just started working with the JavaHelp package. I have done some basic modifying of the Table of Contents and such with no problems.
My issue arises in that I have created various new help files (...
2
votes
2
answers
763
views
Select JavaHelp topic in TOC when using setCurrentID
When I use HelpBroker.setCurrentID("[some help id]"), JavaHelp correctly shows the page I want but the associated topic is not automatically selected/highlighted in the table of contents. This makes ...
1
vote
1
answer
1k
views
Using JavaHelp with a web app
We have a system where our front end is either a Rich Client application or a web interface into the back end. We are working on adding context-sensitive help to our system, but we need to use the ...
0
votes
2
answers
512
views
JavaHelp system help
I'm creating a JavaHelp for our project and I'm having some issues. JavaHelp uses the following files as a convention :
helpset file: MyHelpSet.hs
index file: index.xml
TOC file (table of contents) ...
0
votes
2
answers
4k
views
How do I include JavaHelp with my Eclipse project?
I am writing some applications that require to have a Help Contents system tied to it. I came across JavaHelp which seems perfect for what I need.
The issue I am having is that when you download ...