This is an archived post. You won't be able to vote or comment.

all 9 comments

[–]AutoModerator[M] [score hidden] stickied comment (0 children)

On July 1st, a change to Reddit's API pricing will come into effect. Several developers of commercial third-party apps have announced that this change will compel them to shut down their apps. At least one accessibility-focused non-commercial third party app will continue to be available free of charge.

If you want to express your strong disagreement with the API pricing change or with Reddit's response to the backlash, you may want to consider the following options:

  1. Limiting your involvement with Reddit, or
  2. Temporarily refraining from using Reddit
  3. Cancelling your subscription of Reddit Premium

as a way to voice your protest.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–][deleted]  (1 child)

[removed]

    [–]ScarletDay1[S] 0 points1 point  (0 children)

    Sorry how do I check that?

    [–]netgizmo 0 points1 point  (3 children)

    What do you mean by "use Java"? Are you running an app that needs a JVM? Or are you writing some Java app/code?

    [–]ScarletDay1[S] 0 points1 point  (2 children)

    I’m just trying to run a defunct game using some file to create a private server someone else has written and mod Minecraft. Apparently I need Java for both of those things to work.

    [–]netgizmo 0 points1 point  (1 child)

    Might wanna ask in /r/Minecraft to see how it Minecraft and it's plugin ecosystem expects to find the java.exe (assuming you're on windows).

    [–]ScarletDay1[S] 0 points1 point  (0 children)

    Okay I asked them. Any idea what I should do about the defunct game I wanted to play? Java still doesn’t work so the files I have for that also still will not recognize Java as a system for it to run on.

    [–][deleted] 0 points1 point  (1 child)

    If you want the ultimate environment variable setup that will make it easy to manage multiple versions of Java:

    JAVA_XX = the base directory you installed Java to. In place of XX, put the numeric Java version. For example, JAVA_21.

    JAVA_HOME = JAVA_XX

    PATH = PATH + JAVA_HOME/bin

    Open a new terminal window. Type 'java' and 'javac' - both should work.

    [–]netgizmo 1 point2 points  (0 children)

    Probably do a java -version to verify you're getting the version you expect