I have 2 files that each contain a series of ordered numbers, separated by spaces (" "). Write a program that produces a third file that will contain the ascend
I am doing a project for class and am stuck on trying to develop this method. Would anyone be able to give me an example? The instructions for the method are be
My Structured Spark Streaming program is to read JSON data from Kafka and write to HDFS in JSON format. I am able to save JSON to HDFS but it saves the JSON st
I am using the below configuration build.gradle plugins { id "com.google.protobuf" version "0.8.17" id "java" } group "de.prerna.aws.tests" version "1.
After forcing off the "Local line editing" at Putty (Raw mode), all chars typed are sent to the server without the Enter (checked it with Wireshark). I have thi
In appengine-web.xml we have <resource-files> tag to make resources files accessible to the application at runtime but not public, but in the new app.yaml
I am trying to write a code of adjacency list implementation of the graph ADT. private ArrayList<LinkedList<Integer>> adjLists ; but I don't know
I wonder what the catch is with createNewFile() in recent versions of jCIFS and ng (SMB2 specifically). The documentation says it should fail on execution if a
How can I access other query parameter values inside QuerydslBinderCustomizer? My goal is to create a departure.between(min, max) binding, that I want to derive
Query: this.dslContext.select( ROLE.asterisk(), multiset( select(PERMISSION.asterisk()) .from(ROLE_P
I need GSON mapper to throw an exception if json contains unknown fields. For example if we have POJO like public class MyClass { String name; } and json l
I have a Spring Boot application and hibernate exception comes every day at a particular time at night. The exception is : could not execute statement; SQL [n/a
In my project we must call 2 contract first SOAP Web Services with identical Request/Response objects. As the web services were contract first, I created classe
I am working with the Java Swing library. I have two rectangles of the same width and height and the same coordinates. I want to combine them into one so I can
I'm using jolt in order to do some transformations, I've been able to do that but I'm having some issues trying to replace some text in some properties of my JS
I am trying to build flutter apk on debug mode from android studio. Flutter run I get this error: Launching lib/main.dart on sdk gphone x86 arm in debug mode...
I am writing a rest service which will download the pdf when user access this service on users machine. below is the code of my controller class. When I tried
I am trying to find out the square root of an integer, but in case the integer value is too large for instance - 2147395599. Then the following program gives th
I have a spring-boot application with one database. Now I would like to integrate the possibility to copy some data from this database to another database. The
I was going through basics of multithreading and was writing a program to understand the difference between using the 2 approaches of creating threads. I have r