The import jdk.nashorn cannot be resolved - java

I am trying to import a project into my eclipse workspace. When I maven updated the project, this dependency is not getting downloaded.
When I searched online, I found that jdk.nashorn is not supported from java 11 onwards. But I am using java 1.8.0_231, still its not working for me.
The code uses below class from the library.
import jdk.nashorn.internal.ir.debug.ObjectSizeCalculator;
ObjectSizeCalculator.getObjectSize(modRespList)
Is there any way to make this code work?

Related

Eclipse - The import javax.jws cannot be resolved

I have imported recently in my code the packages javax.jws.webService and javax.jws.webMethod, the first time i launch my code the import works, but when i came back, this error appeared.
I have java 1.8
I tried to restart Eclipse, but it doesn't work.

Importing GraphStream library in NetBeans 8.0

I am just getting started with GraphStream and using NetBeans as an IDE in my laptop (Yosemite 10.10). I already downloaded and included .jar library file into my project:
My problem is I still can’t import graphstream in my class. This is what I wrote:
import org.graphstream.graph.*;
but I’m still getting the error message
Package import org.graphstream.graph.* doesn’t exist
Is there any way to import GraphStream in my NetBeans? Any help would be appreciated. Thank you.
You have to extract those 3 gs-*.zip files that you downloaded from the website. Then, inside the extracted folders you will find gs-*.jar files. These are the actual binaries that Netbeans needs as dependencies.

The import com.badlogic cannot be resolved in Java Project Libgdx Setup

I've just tried to setup Libgdx to start making games, i followed this tutorial https://www.youtube.com/watch?v=S9fs1PVTyUc&feature=youtu.be
in conjunction with the libgdx grdale setup. However an error shows up in the Java project which says:
The import com.badlogic cannot be resolved
I am using Eclipse for Java IDE. I believe I have the Android SDK installed. I think it may be to do with the setup but i think the latest updates are there and i tried deleting '.m2'ccahe, which is not there any more btw after i deleted it (not been replaced), but this didnt work. Any ideas?
heres my code for the java proect:
import com.badlogic.gmx.Game;
public class GameMain extends Game{
}//'com.badlogic 'gets an error and so does 'Game'
The issue you are encountering is your eclipse project "CreateGame" is not setup correctly. It is missing the files needed to use libgdx.
Possible Solutions:
Use the libgdx project setup tool and then follow the instructions here to import the project to eclipse. (easy)
Add the missing library files to the project (hard)
Also make sure your game code is going into the game-core project as this project is used by each platform you are targeting.

The import org.apache.commons.lang3 cannot be resolved

I'm trying to import this library in order to use the RandomStringUtils class, but always I'm getting the error in the title of the question.
This is an ANT project, so I downloaded the library from Apache (http://commons.apache.org/proper/commons-lang/download_lang.cgi) and put it in the lib folder of the project. However, it's not working.
I got another library in this folder (org.apache.commons.cli) and it's working fine.
edit: ok, this is solved... It's a bug in Eclipse saying the import cannot be resolved.
ok, this is solved... It's a bug in Eclipse saying the import cannot be resolved.

The import com.mockobjects.sql cannot be resolved

import com.mockobjects.sql.*;
The above line creates the error The import com.mockobjects.sql cannot be resolved
Can anyone please tell me what I have to download to make it work? Wihch library to add to the build path? Its driving me nuts!
edit: I've already added the mockobject jar to my class build path.
I believe com.mockobjects.sql is the package of the Mock Objects . You can download the latest version which is released about 9 years ago from the official website and import the downloaded jars to your project build path.

Categories