16 Şubat 2017 Perşembe

Find Duplicate Records in Oracle

SELECT NAME, COUNT(NAME) FROM CUSTOMERS GROUP BY NAME HAVING COUNT(NAME) > [...]

6 Şubat 2017 Pazartesi

Java Keystore Operations

Navigate to %JAVA_HOME%\bin or add this path to environment variables. Generate key in keystore : keytool -genkey -keystore {path}\{name}.keystore -alias {alias} -keyalg RSA List files in a keystore : keytool -list -v -keystore {path}\{name}.keystore Export certificate from keystore : keytool -export -keystore {path}\{name}.keystore -alias {alias} -file {destination} Import certificate to keystore [...]

20 Şubat 2013 Çarşamba

A Free Help Authoring Tool : Precision Helper

Creating help documents, manuals are important for applications. We decided to create one for our web application, and googled some keywords: "help document creator", "compiled html generator", "help page prepare tool".. Finally we found the best term, and the best freeware application : "Precision Helper" http://www.be-precision.com/products/precision-helper/ Creating .chm files and converting [...]

14 Şubat 2013 Perşembe

Using java.text.Normalizer to convert accents to regular string

I had to send SMS in Java application, and the message consists of a name parameter like Alkın TÖŞDÖĞEN. This is a Turkish word so it is not properly displayed in message. The first solution in everyone's mind is I think to use .replaceAll("Ö", "O").replaceAll("ı", "i").. But here is a simpler way : public static String convertToRegular(String aOriginal) {        [...]

15 Ekim 2012 Pazartesi

Deploying war file to Uhuru Appcloud : So Easy!

Last week I found a new PaaS called Uhuru Appcloud. I would like to show to how to easily deploy a Java web application to Appcloud in a few steps. 1. The first thing you should do is visiting this site : http://www.uhurucloud.com/ and signing in by one of these openid authentication accounts; google, microsoft and facebook. 2. When you login, you will see your 'teams' page, that is [...]

Blogger tarafından desteklenmektedir.