0
votes
0answers
18 views

Red5 can't find Bootstrap java.lang.NoClassDefFoundError

I'm trying to setup Red5 on Cygwin. I've got this error, similar to the question here. I've tried some of the solutions there, but they didn't appear effective. Starting Red5 ...
0
votes
2answers
24 views

Unable to access jarfile under cygwin

I know there are many "unable to access jarfile" questions on here, but I do feel this is different enough to warrant its own thread. I am writing a walkthrough, part of this walkthrough involves ...
2
votes
1answer
38 views

how to invoke cygwin thorugh java shell?

I have a code meant for Linux which execute .sh files on the unix shell. I wanted to run the same code for windows. i was told that i should install cygwin for windows. I did that but now how do i ...
1
vote
3answers
66 views

how do i set JAVA_HOME in bash?

my host system is windows 7 I am trying to get this to work in CYGWIN. I need to set an environment variable called JAVA_HOME to be c/program files (x86)/java/jre7 here's what i tried: $myjava=cat ...
-2
votes
0answers
68 views

How to write automated test case for restful java web service? [closed]

I am new to Java and I want to write an automated test case for my restful web service. Can I have a sample example? Thanks
3
votes
1answer
165 views

Error: Could not find or load main class - Java cygwin

Using cygwin on windows 7. To compile all my files I do: javac -cp ./antlr-3.2.jar *.java which works fine. Then I try java -cp .:./antlr-3.2.jar Interpreter where interpreter is a .java file ...
0
votes
1answer
52 views

how to tell which java version cgywin use?

i have cgywin and java 7 installed on window 7, also updated the system environment variable to point to the right java version, however when I run commands in cgywin, I m not sure which java it use, ...
0
votes
1answer
51 views

Running cygwin compiled program from Java

I have built an .exe using cygwin. It is called ms.exe. I am trying to run it from java using ProcessBuilder. I have used ProcessBuilder before to capture its output. On a command window (cmd.exe), ...
1
vote
1answer
73 views

Hadoop server run wizard is not opening in Eclipse

I have configured the Hadoop installation directory location(C:\cygwin\home\hadoop-0.19.1) but whenever i am running the .java file as run on Hadoop it is not displaying Hadoop server run wizard and ...
3
votes
1answer
169 views

Cygwin runs wrong version of java

I have this problem with Cygwin. I have Java 1.6 and 1.7 installed. I want to use maven 3.0.4 with Java 1.7 but I don't want to uninstall Java 1.6. My JAVA_HOME looks like: C:\Program ...
0
votes
0answers
67 views

Maven cannot create SSH connection

I'm usin maven 2.2.1, and trying to do SSH connection to repository with settings: <server> <id>my-repository-ssh</id> ...
2
votes
1answer
100 views

error: parse error before “double” (cygwin)

So this is the code I am using: Test.java: public class HelloWorld { static { System.loadLibrary("SumLib"); } public static void main(String args[]) { Random rand = ...
0
votes
0answers
212 views

Install Protocol Buffers on Windows

I am unable to find clear instructions to install Google Protocol Buffers (including compiler) on Windows x64 platform. I went through the instructions README file for compiler and source: For ...
0
votes
2answers
944 views

setting multiple jar files as classpath in cygwin

I have the program x.java in c:\cygwin\programs\x.java and it uses y.jar and z.jar that are also in the folder c:\cygwin\programs. In windows: c:cygwin\programs>javac -classpath ...
2
votes
2answers
187 views

cannot compile java files using cygwin

I am trying to compile some files using cygwin shell. java file that I am trying to compile is C:\Users\Programs\x.java For windows command prompt C:\Users\Programs>javac x.java No errors. ...
0
votes
1answer
204 views

Run hadoop job under windows

I have successfully installed hadoop under windows. (Namenodes and jobtrackers start normally as they should) Now I'm trying to run some example jobs: Running the following command (in cygwin) ...
0
votes
1answer
533 views

Error while installing Hadoop

I am trying to learn hadoop and I am following the installation steps on http://v-lad.org/Tutorials/Hadoop/12%20-%20format%20the%20namendoe.html. However I am getting the following error and I have no ...
0
votes
1answer
879 views

cygwin bash: java: command not found

So I had to re-install my system. I installed Cygwin in C:\cygwin\bin And I used the batch file that worked on my previous installation: "start_cygwin.bat" @echo off C: chdir C:\cygwin\bin ...
1
vote
2answers
1k views

LOCAL_SRC_FILES points to a missing file

i'm doing an augemented reality program. i was handed this project and im new to cygwin and android programming. i have to use cygwin to compile one of my cpp file. however when i do a ndk-build on ...
2
votes
1answer
374 views

Java throws Process exitValue: 127 when running expect script

I'm trying a new approach to a hitch I've been stuck on. Instead of using expect4j for my SSH connection, (I couldn't figure out a way past blocking consumer runs and issues with closures, see past ...
4
votes
1answer
260 views

Cygwin CTRL-C (Signal Interrupts) not working properly - JVM Shutdown Hooks not starting

I'm working on a Java application that utilises shutdown hooks in order to clean up on termination/interruption of the program, but I've noticed that Cygwin's implementation of CTRL-C doesn't seem to ...
1
vote
0answers
97 views

c++ iostreams not working through JNI

I am creating a shared library Client.dll using Cygwin g++ compiler and calling through a JAVA program. Everything is working fine if I remove 'cout <<' command from Client.c program. The ...
0
votes
2answers
252 views

NumberFormatException Error

GOT THIS SORTED THANKS. I am running a Mapreduce Job using Hadoop through Cygwin. I am getting the following NumberFormatException Error... any idea how i can fix this outside of try & catch ...
0
votes
2answers
296 views

Hadoop on Windows with Eclipse error when starting data node

I am following this tutorial http://v-lad.org/Tutorials/Hadoop/14%20-%20start%20up%20the%20cluster.html I am at the "start the cluster" step but when I start the data node(when I execute the command: ...
0
votes
1answer
119 views

No output file created when compiled with gcc

Calling gcc compiler in a Java Source to compile a C file. List<String> command = new ArrayList<String>(); String fs = System.getProperty("file.separator"); command.add("C:\\cygwin" ...
4
votes
3answers
2k views

HBase 0.92 Standalone on Windows with Cygwin

Does anybody know a tutorial how HBase can be run on Windows under Cygwin? I managed to setup everything such as the keys for auto login with SSH but Im stuck with following error message: ...
2
votes
1answer
221 views

Saxon 9.4 Query from cygwin

I am in the folder : /cygdrive/d/ragsxq where I have kept some simple X-Query stmts to be executed via Saxon X-Query engine...(Saxon 9.4 HE ) The following statement : $ java -classpath ...
-1
votes
1answer
2k views

cygwin cannot find make program

What I'm trying to do is successfully compile native code using Cygwin. The error message i get when i run type my directory to the ndk-build in the terminal is ERROR: Cannot find 'make' program. ...
0
votes
1answer
211 views

SWIG - include existing static C++ library (.lib) using cygwin

I'm currently working on a Java Project which will be added to an existing larger system. The communication with the system is on an XML basis over a network connection. The Problem is that this ...
1
vote
2answers
500 views

deploying java through Cygwin

My Java development done in a windows machine and i run my processes on a centos machine. I have a bash script that build all my Jars and SCP them to my centos machine. i run this bash script in ...
1
vote
2answers
306 views

Launching CYGWIN-built executable from Java on Windows 7 fails with “error while loading shared libraries: ?: No such file or directory”

The code in question has worked in more or less the exact same configuration on earlier releases of Windows, however, it is not known to have run on Windows 7 YET! That's what I need to solve now. ...
4
votes
2answers
235 views

Specify Heap Size in Perl Script for Java Code

The java project i am working on needs to be tested for 1800 configurations. I have created a perl script for this and running it on cygwin. Some of these configurations require more heap space than ...
1
vote
2answers
373 views

Start Cygwin process from Java

I need to use GNU Octave in a Windows environment. The Octave process will be called from Java server, using ProcessBuilder or Apache Commons Exec. Octave needs to be run using Cygwin. What is the ...
-2
votes
1answer
85 views

Having bash capabilities on windows [closed]

I use linux and windows and I want to use linux gnu tools under windows .I try cygwin but it does not what i had looked for so i decide to learn a capable scripting language and I am a java ...
0
votes
2answers
636 views

Java path problems on Cygwin

I'm trying to compile a Java project under Cygwin using a native Win32 Java. The Java binaries are correctly found under /cygdrive/c/jdk/bin on my machine. The following command works fine: javac ...
0
votes
3answers
700 views

Getting error in calling shell script in windows environment using java code and cygwin…!

I want to call shell script on windows environment using java code. I am trying to execute code below to run my test script(not actual script): Java Code: public static void main (String args[]) { ...
0
votes
2answers
692 views

How to code in java to run unix shell script which use rSync internally in windows environment using cygwin?

I am using cygwin to get unix environment on windows. I have some shell script that run on cygwin to perform syncing works and other things. I want to executes these script through java code. Also ...
1
vote
1answer
203 views

Running a script from Java

I have a number of scripts that I run on Windows through cygwin. These script files always require manual editing whenever I take a new sandbox. Thus, I was thinking of writing a little Java UI app ...
0
votes
1answer
307 views

Access violation 0xc0000005 on exit with JNI Cygwin code on Windows XP

I'm stumped on this. I have JNI code that works on Ubuntu 11 and MacOSX but cause problems with Windows. JRE version: 6.0_31-b05 OS: Windows XP with gcc 4. Modified jni_md.h to avoid the _int64 ...
1
vote
1answer
1k views

How to run bash script from Java

I've seen many similar posts but I am still stumped. I want to run this shell script with a Java program : C:\\Users\\pro-services\\Desktop\\projects\\github\\cygwin\\TEST.sh Here's what the code ...
2
votes
4answers
4k views

How to run Java from Cygwin

I'm trying to write a BASH script to get my Java program to run(common issue, right?). I just can't quite get it to work. After many edits, here's how I am trying to set the classpath and then ...
3
votes
1answer
203 views

How can I call the Cygwin C compiler GCC from Java?

I am trying to compile a C file from Java by calling Cygwin's gcc or gcc-4, but nothing I try seems to work. What I am trying is the following line of code: theProcess = ...
1
vote
1answer
735 views

Setting up Apache Tomcat in Cygwin

I'm trying to set up Apache Tomcat on Cygwin and when I run the configtest.sh script, I get this error. My environment variables all appear to be correct, but when java complains about not finding ...
0
votes
1answer
168 views

mkfs.cramfs: command not found in cygwin

I am trying to run shell script using Cygwin and Java. I am getting the following error mkfs.cramfs: command not found lib/tgzcreator.sh: line 346: [: -eq: unary operator expected Can anyone ...
1
vote
2answers
6k views

java.io.IOException:Cannot run program “sh” (in directory“c:\cygwin\bin\test”):CreateProcess error=2.The system cannot find file specified

I am running shell scripts with the help of java and cygwin. When i am running my code in windows xp it works fine. Now i am trying to run same code on windows 7 i am getting above error. ...
3
votes
1answer
1k views

Run Bash(.sh) on Windows 7

This is a GUI java application, I have a run.sh file and I want to run it on Windows 7(x64) how to made that? The file have this rows: #!/bin/bash java -Xmx2048m -classpath ./lib/*: ...
1
vote
2answers
668 views

how to run shell script in java using Cygwin

From a long time i am struggling for with this program. I am having a shell script which accepts parameters as version number and path for the files. then that script creates Zip file with the name ...
0
votes
2answers
1k views

Need help for installing hadoop

I am new to Hadoop and trying to install it on my windows 7 (x64) PC using cygwin. I followed this tutorial to install http://alans.se/blog/2010/hadoop-hbase-cygwin-windows-7-x64/#software Everything ...
0
votes
1answer
154 views

How to make Eclipse/Ant aware of Cygwin without adding to global path

I have a Java project in Eclipse, running on Windows. It uses ANT and has a target which invokes Linux tools like SCP/BASH. I've installed cygwin but since I haven't added it to my global path, ...
1
vote
1answer
293 views

SWIG CYGWIN DLL linking

I'm trying to follow the SWIG Java example located here. This example uses cygwin for compilation. I would like to pass the compiler an alredy compiled dll, test.dll, instead of a C source file. The ...

1 2 3