
Search In
LocalDateTime is an immutable date-time object that represents a date-time, with default format as yyyy-MM-dd-HH-mm-ss.zzz. It provides a factory method that takes LocalDate and LocalTime input arguments to create LocalDateTime instance. Let’s look i
How to select video from gallery through intent?
Step 1: Declare the variables on the activity from where you want to hit the intent
int SELECT_VIDEO_REQUEST=100;
String selectedVideoPath;
Step 2: Selecting Video from gallery by intent hit
pu
Hello guys,
Entities are the heart of a service which are defined in the service.xml in the liferay portlet. It represents the map between the model objects in Java and the fields/column and tables in your database. Once your entities are defined in
Below are some general keyboard shortcuts which you can use while working on a MS Word and MS Excel.
S.No
General
S
I am trying to read large Image file more than 300KB from NSInputStream. But i'm getting only upto 300KB. Other data are missing. Could you please help me if you know. i'm waiting for your valuable answer. I mentioned my code below : Call this readAl
Hi friends,
Here I am writing a way to implement basic LinkedList.
First of all LinkedList has the properties of List interface and
AbstractSequentialList class because it implements List interface and extends
AbstractSequentialList.
Example :
Introduction to Bug
The main purpose of performing testing is to identify bugs or defects in the software product. A software bug is an error, flaw, mistake, failure, or fault in a computer program that prevents it from behaving as intended. Any und
For enabling server to listen on different ports we can make the changes in file “port.conf” in Debian/Ubuntu based linux server. The path where we can find the “ports.conf” file is below:
1-> Debian/ Ubuntu : { /etc/apache2/ports.conf }
l
Javascript data type can hold may data type like number string arrays object and other.
To declare a variable we use var keyword
example
var length = 16; // Number
var lastName = "Johnson"; // Strin
Javascript () Operator Invokes the Function
During the call of the function the code of the function gets executed. the call to the function can be made by the name of the function followed by the parentheses ().
example:
func(1,2);
This paren
