ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How to build and run the pub sub tutorial in rosjava?

asked 2012-07-13 02:34:16 -0500

ChrisEule gravatar image

updated 2012-07-13 02:35:03 -0500

Hello guys,

i have a problem to run the pubsub tutorial project in rosjava. I build rosjava_core successfully and followed this tutorial http://docs.rosjava.googlecode.com/hg/rosjava_core/html/getting_started.html but the step "Executing nodes" doesn't work for me unfortunatelly. The build process (../gradlew installApp) runs without any errors (only a warning "bootstrap class path not set in conjunction with -source 1.6") but there is no path "/rosjava_tutorial_pubsub/bin/rosjava_tutorial_pubsub" in directory build. Even the executable nodes (Talker and Listener) cannot be found anywhere in the project. Maybe the tutorial isn't up to date here?

thanks

edit retag flag offensive close merge delete

3 Answers

Sort by ยป oldest newest most voted
2

answered 2012-07-21 15:20:58 -0500

liangfok gravatar image

I also ran into the same problem and think there is an error in the tutorial. To execute the example, I had to change:

./build/rosjava_tutorial_pubsub/bin/rosjava_tutorial_pubsub org.ros.rosjava_tutorial_pubsub.Talker & ./build/rosjava_tutorial_pubsub/bin/rosjava_tutorial_pubsub org.ros.rosjava_tutorial_pubsub.Listener

to:

./build/install/rosjava_tutorial_pubsub/bin/rosjava_tutorial_pubsub org.ros.sjava_tutorial_pubsub.Talker & ./build/install/rosjava_tutorial_pubsub/bin/rosjava_tutorial_pubsub org.ros.sjava_tutorial_pubsub.Listener

edit flag offensive delete link more

Comments

What ROS version is used for this tutorial?

uzair gravatar image uzair  ( 2013-11-23 09:39:36 -0500 )edit
0

answered 2013-11-23 18:59:05 -0500

Daniel Stonier gravatar image

Rosjava has been moving on - some up to date information (Nov '13) for appropriate tutorial documentation:

edit flag offensive delete link more
1

answered 2012-07-13 02:53:44 -0500

KruseT gravatar image

updated 2012-07-13 02:54:45 -0500

I just ran the tutorials, and they worked fine for me. I summarized what I found on a tutorial wiki page. http://ros.org/wiki/rosjava_core/Tutorials

For me the executable is located in build/install.

Maybe you can paste the contents of your build.gradle as well as the results of

$ find src
$ find build

here so that it is easier to understand what happened. For now I would suspect that you did not create the folder structure src/main/java as required by gradle.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2012-07-13 02:34:16 -0500

Seen: 1,853 times

Last updated: Nov 24 '13