Is it Ok to connect mysql database to android without json? [closed] - java

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
i have been trying to connect mysql db with android app, and through json i cannot connect it, is it ok not to use json or use any method without json ?

You never needed JSON. You could use XML instead, or create your own serialized format.
The purpose of using a web API (assuming you are using PHP + MySQL) is that you should not use JDBC directly from the Android app

Related

Communicating Swift iOS and Java [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
How can my Swift and Java programs communicate a value? e.g. Swift puts "hello" to web, java retrieves and prints "hello"
You have to create web service for java program. So you can directly
call java function from any platform. You can use
jersey framework
for creating web service.
This will communicate by JSON Response and JSON Request.

how much is it secure to share login data using java-bean using socket [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to build a chat Server and client using sockets.
For this first i want to be user login.
I have created a java-bean class and i want to know
How much it is secure to send this java-bean containing username ,email and password to server ?
Unless you use an SSLSocket, its not secure at all. Also it is really not clear what you mean by sending a java bean (Spring, EJB...).

Completely change the response of spring project from rendering jsp to json object [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have developed a spring application and now I required to develop an android application with the same functionality. Now what i want is to use the same web controller part for sending json object in response with those url mappings.
#james i think you could use ContentNegotiationViewResolver for the type of requirement you have. The proper implementation you can get from this link

Rely my android app to json file in the web [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Here is the thing, i want to retrieve some news into my android application which i could find in a json file.
I was thinking about creating some blog(wordpress maybe) and by adding articles, it automatically add it into the json file.
In this way, after relying my app to the json file, all i need to do is adding articles in the blog.
After app started load JSON from server.
Parse it to app content.
Add posibility for manual refresh with SwipeRefreshLayout. https://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html
If you need your app update JSON automatically, after new post added to blog your should use Google Cloud Messaging. https://developers.google.com/cloud-messaging/?hl=ru

Web Application To Move Data from Microsoft SQL Server to Clouer Hadoop [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am developing a web application to move data from Microsoft SQL Server data to Cloudera Hadoop. Please give Some Suggestions.
So Sqoop2 is being actively developed for this exact purpose. Also, the Hue project has a Sqoop2 app, which uses Sqoop to batch transfer data.

Categories

Resources