Its pretty simple. Check out the below code:
WebDriver driver = new FirefoxDriver();
JavascriptExecutor jse = (JavascriptExecutor)driver;
Try using the below code for Scroll down:
jse.executeScript("window.scrollBy(0,250)", "");
OR,
jse.executeScript("scroll(0, 250);");
Try using the below code for Scroll up:
jse.executeScript("window.scrollBy(0,-250)", "");
OR,
jse.executeScript("scroll(0, -250);");