Reflection made Easy!
I have not done any work prior to using reflection in my Java projects. A project I was working on I needed to be able to access the Getter/Setter of…
I have not done any work prior to using reflection in my Java projects. A project I was working on I needed to be able to access the Getter/Setter of…
Every need an additional method on the String Class? Well I have and it would have made life much easier. Unfortunately you can’t subclass String as it is Final. So…
We discussed the HTTP Server ContextHandler in a Jar one of the methods was ContextHandlerInterface.getFilters() this method returns a list of Filters to apply to incoming HTTP Requests. We subclass com.sun.net.httpserver.Filter for…
Today, I’m going to share with you a command handler for the HTTP Server I presented previously. This is a handler to extend the abilities of that HTTP Server in…
Last time I showed you how to create a basic HTTP Server that you can put into a JAR easily. Today I’m going to show you how to extend that…
I recently had the need to be able to access a couple of files from a number of computers and didn’t want to setup network shares and things. These were…
Ready to create your own self signed certificates? First step is to crate a Certificate Authority. It’s easy if you follow the correct steps. We’ll break this down into different…