GithubHelp home page GithubHelp logo

Comments (11)

daitenshionyan avatar daitenshionyan commented on August 11, 2024 2

You can opening jshell with multiple *.java
eg. jshell *.java *.java *.java *.java

A bunch of error messages will come out but if you do enough *.java it should work assuming that all your files can compile.
I think this causes jshell to try to open all your file as many times as you *.java. The previous *.java will open some files so the next can open the files that depend on those opened before. So if you do enough *.java everything should open. There is no way to know if it worked until you test out your code.

image

a whole bunch of error messages and then...

image

from 2122-s2.

undeser avatar undeser commented on August 11, 2024 1

On your terminal, simply
jshell File1.java File2.java File3.java ...

image

from 2122-s2.

wjahoward avatar wjahoward commented on August 11, 2024

I don't think is possible using jshell to open all the files directly since is running the files alphabetically, and some files might depend on certain files to be executed first i.e. inheritance, interface, etc.

from 2122-s2.

alantay11 avatar alantay11 commented on August 11, 2024

You can use jshell *.java, but it will open them alphabetically so it won't always work.

from 2122-s2.

Lu-Yi-Fan avatar Lu-Yi-Fan commented on August 11, 2024

Hi, what about typing out all the file names that you require following the word jshell in ur terminal,
for example in your terminal before you open jshell: jshell Cruise.java Loader.java RecycledLoader.java SmallCruise.java BigCruise.java ImList.java
this will open all the files you need in jshell

from 2122-s2.

gordengorden avatar gordengorden commented on August 11, 2024

I think because the nature of jshell requires you to open in order of dependency, there's no way to easily open all files with something like a *.java without some dependency breaking. You could just keep a txt file somewhere with the full command for easy reference.

from 2122-s2.

summerthia02 avatar summerthia02 commented on August 11, 2024

Screenshot 2022-02-21 at 1 18 06 PM
you can open up all the files by 'jshell' the files one by one like this

from 2122-s2.

Brianliew77 avatar Brianliew77 commented on August 11, 2024

you can use *.java to open all java files in the particular directory you're in. However it may not work is there are dependencies hence its best to type it out individually in order of dependency!

from 2122-s2.

wk1267 avatar wk1267 commented on August 11, 2024

A little unrelated, but it would be good if the admins could give us a test jsh file for us to download. If our code works then when we run the test jsh file, it will print "Level 1 passed all test cases", otherwise print "Level 1 failed test case: new Request(xx, yy, zz) = ..." I believe this will seriously save us lots of time which we could better use to plan and design our code.

from 2122-s2.

shotnothing avatar shotnothing commented on August 11, 2024

You can opening jshell with multiple *.java eg. jshell *.java *.java *.java *.java

A bunch of error messages will come out but if you do enough *.java it should work assuming that all your files can compile. I think this causes jshell to try to open all your file as many times as you *.java. The previous *.java will open some files so the next can open the files that depend on those opened before. So if you do enough *.java everything should open. There is no way to know if it worked until you test out your code.

I made a bash one-liner that does this n-amount of times.

f=(*.java);s=$(printf "%20s" "");eval "jshell "${s// /${f[@]} }""

To specify what n is, change the 20 in the printf. Currently n=20. As long as n is larger than the number of .java files you have, there shouldn't be an issue.

from 2122-s2.

dorothyyuann avatar dorothyyuann commented on August 11, 2024

You can use jshell fileName.java fileName2.java... etc. and you can use the tab key to autocomplete file names. When compiling you can use javac *.java

from 2122-s2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.