Saturday, 30 August 2014
How to Enable USB Debugging in Android 4.3 and above versions ?
Steps for Enabling USB debug mode in android version 4.3 and above......
Step 1: Go to Settings.
Step 2: Click About.
Step 3: Open Software information.
Step 4: Tap Build number continuously until a pop-up hint informs you that you have entered the developer mode.
Step 5: Return to Settings.
Step 6: Find and open Developer options.
Step 7: Select USB debugging and click OK.
After these seven steps, the USB debugging is enabled successfully.
Tuesday, 8 July 2014
Solution for AJAX Repeat Calls
The AJAX Repeat Calls(caching) is due to the same URL that's being called repeatedly.
If you change the URL dynamically then this issue can be resolved.
If you change the URL dynamically then this issue can be resolved.
- Something like by adding a query String with the current time with the request ( or )
- any random generated number
Friday, 9 May 2014
Date Format Conversion in Java
package com.javapages4all;
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
*
* @author Rajeswararao (JavaPages4All)
*
*/
public class DateFormatConversion {
public static void main(String[] args) {
Format format;
Date date = new Date();
System.out.println(date); // Sat May 10 00:31:18 IST 2014
format = new SimpleDateFormat("dd/MM/yy");
System.out.println(format.format(date)); // 10/05/14
format = new SimpleDateFormat("MM/dd/yy");
System.out.println(format.format(date)); // 05/10/14
format = new SimpleDateFormat("dd-MMM-yy");
System.out.println(format.format(date)); // 10-May-14
format = new SimpleDateFormat("yyyy.MM.dd.HH.mm.ss");
System.out.println(format.format(date)); // 2014.05.10.00.27.08
format = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss Z");
System.out.println(format.format(date)); // Sat, 10 May 2014 00:27:08 +0530
format = new SimpleDateFormat("EEEE, dd MMMM yyyy HH:mm:ss zzzz");
System.out.println(format.format(date)); //Saturday, 10 May 2014 00:27:08 India Standard Time
}
}
File Download from Web by using Java
package com.javapages4all;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
/**
*
* @author Rajeswararao (JavaPages4All)
*
*/
public class FileDownload {
public static void main(String args[]) throws IOException {
BufferedInputStream buffInputStream=null;
FileOutputStream fileOutputStream=null;
BufferedOutputStream buffOutputStream=null;
try {
buffInputStream= new BufferedInputStream(new URL("File Url").openStream());
fileOutputStream = new FileOutputStream("D://JavaPage4All.pdf");
buffOutputStream = new BufferedOutputStream(fileOutputStream,1024);
byte data[] = new byte[1024];
int length;
while ((length = buffInputStream.read(data)) > 0) {
buffOutputStream.write(data, 0, length);
}
} catch (Exception e) {
e.printStackTrace();
}finally{
if(buffOutputStream != null)
buffOutputStream.close();
if(fileOutputStream != null)
fileOutputStream.close();
if(buffInputStream != null)
buffInputStream.close();
}
}
}
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
/**
*
* @author Rajeswararao (JavaPages4All)
*
*/
public class FileDownload {
public static void main(String args[]) throws IOException {
BufferedInputStream buffInputStream=null;
FileOutputStream fileOutputStream=null;
BufferedOutputStream buffOutputStream=null;
try {
buffInputStream= new BufferedInputStream(new URL("File Url").openStream());
fileOutputStream = new FileOutputStream("D://JavaPage4All.pdf");
buffOutputStream = new BufferedOutputStream(fileOutputStream,1024);
byte data[] = new byte[1024];
int length;
while ((length = buffInputStream.read(data)) > 0) {
buffOutputStream.write(data, 0, length);
}
} catch (Exception e) {
e.printStackTrace();
}finally{
if(buffOutputStream != null)
buffOutputStream.close();
if(fileOutputStream != null)
fileOutputStream.close();
if(buffInputStream != null)
buffInputStream.close();
}
}
}
Thursday, 1 May 2014
Why we are using XML Design for Android Apps?
- XML layout design is easy to understand as well keep application user interface separate from the application code.
- There are many devices in the market having different-different display sizes and Android provides an easier task to create UI for all using XML and keeping them separate.
- Also if you want to develop an multilingual application then XML is the best one.
Only use the Java code for layout if you really need otherwise you have still best option XML.
Android Activity Creation with XML Design
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
Android Activity Creation without XML Design
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello, Android");
setContentView(tv);
}
}
How to Get Thunderbird Email Messages Into Outlook
- Open Thunder bird. Mail
- Select the messages you want to export to Outlook.
How many you can export will depend on the size of each message and its
attachments as well as the capability of your Internet connection and
provider.
- After selecting the messages, right click and select "Forward as Attachments." A new mail message will open up with the email messages you selected as attachments. Enter the email address you are using with Outlook and press send.
- Open the email containing the
email message attachments and move this active window down a bit on
your screen so you can see your main inbox area in Outlook.
- Select All Attachments that contains ThunderBird mails as Attachments then Drag it into your Inbox or any Folder . Finally you got it.
How to Delete All Lines Containing a Unwanted Words from Text File?
- Go to Search menu > Find... > Select "Mark" Tab. Enter Search Text in Find what Search Box or Activate regular expressions. Search for
^<Path>
(^
is for line start). Don't forget to check "Bookmark lines" and Press "Mark All"
==> All Rows you want to keep got a Bookmark - Go to Menu "Search - Bookmark - Remove Bookmarked lines"
==> All Bookmarked lines are deleted.
Subscribe to:
Posts (Atom)