Skip to content
Advertisement

Tag: eclipse

Eclipse & E-Git: checking out old Github revisions for comparison – but can’t checkout/restore current HEAD revision

I have a longtime question here about checking out old Git revisions. There’s a feature in Eclipse where you can view your “Git History” via the Team Version Control History view and see all of your commits. If you right-click old revisions, you can click “Checkout” in the context menu to revert your project to that version. It’s extremely helpful

Java ClassVersionError although version seems to be okay

I’m getting the following error in my java web app (The application launches okay but when I click a button following error occurs). I’m using Tomcat (7.0.109) to run this application. java.lang.UnsupportedClassVersionError: FileDetailsServlet has been compiled by a more recent version of the Java Runtime (class file version 59.0), this version of the Java Runtime only recognizes class file versions

Trying to reverse my stream in ascending order – Java 8

This idea behind this code is that it reads the data from three .csv files w/ keys organized by year, and retrieves the sum of the data by year, as well as the minimum and maximum number for each year. The problem is, when print it returns the yearly results in descending order. I need help figuring out a way

Advertisement