Sravani S has Published 90 Articles

Splitting and uploading extremely large files to Amazon S3

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:22

395 Views

For storing extremely large files on Amazon S3, the configured virtual machine can be used which would be 10+ GB in size.In HTML5 file API, very large files are divided into small bits on the client. The server has the responsibility to join files together and move the complete file ... Read More

What is the difference between size and capacity of a Vector in Java?

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:21

2K+ Views

The size of a vector represents the number of components in the vector. The capacity of a vector represents the maximum number of elements the vector can hold.Example:import java.util.*; public class VectorDemo {    public static void main(String args[]) {       Vector v = new Vector(3, 2); ... Read More

What does the method addLast(E e) do in java?

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:21

119 Views

The addLast(E e) method of the java.util.LinkedList class inserts the specified element at the end of this list.Example:import java.util.*; public class LinkedListDemo {    public static void main(String[] args) {       LinkedList list = new LinkedList();       list.add("Hello");       list.add(2);       list.add("Chocolate");   ... Read More

How to convert a comma separated String into an ArrayList in Java?

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:21

7K+ Views

To convert a comma separated String into an ArrayListSplit the String into an array of Strings using the split() method.Now, convert the obtained String array to list using the asList() method of the Arrays class.Example Live Demoimport java.util.Arrays; import java.util.List; public class Sample {    public static void main(String[] args) ... Read More

What are type qualifiers in C++?

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:21

1K+ Views

A type qualifier is a keyword that is applied to a type, resulting in a qualified type. For example, const int is a qualified type representing a constant integer, while int is the corresponding unqualified type, simply an integer. Type qualifiers are a way of expressing additional information about a ... Read More

Storing configuration so that it doesn’t transfer to database in SAP system

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:20

52 Views

I don’t think it can be automated so that configuration is not copied to the database. Try checking SAP Transport and Change Management detail, it could be possible by making some changes in Transport configuration.

Integrating SAP with PHP

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:20

1K+ Views

Out of several ways to connect SAP to PHP - Web services and RFC (Remote Function Calls) are more used by developers. SAPRFC is an extension module for PHP 4 and PHP 5. With SAPRFC it is possible to call ABAP function modules in SAP R/3 from PHP scripts. You can ... Read More

Reading an image using SAP OData v2 in UI5 application

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:20

340 Views

You have to use below code:img.setSrc("/path/to/my/service/UserPhotoSet('someone@gmail.com')/$value");Here you need to replace part with original path.

Difference between SAP ERP and a DBMS system

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:20

973 Views

On a very basic level, a DBMS is a method for looking at something. For ex. SQL Server, MySQL, and others. It is basically a program that lets you communicate with databases.Database management system is a product which sorts out information in a database, gets information, controls and manipulates information. ... Read More

How to convert Java Array/Collection to JSON array?

Sravani S

Sravani S

Updated on 30-Jul-2019 22:30:20

7K+ Views

Google provides a library named org.json.JSONArray and, following is the maven dependency to add library to your project. com.googlecode.json-simple json-simple 1.1 The JSONArray class of the org.json package provides put() method. Using this method, you can populate the JSONArray object with ... Read More

Previous 1 ... 5 6 7 8 9
Advertisements