I won't give full code because this looks like homework, but here's an outline of one possible algorithm you could use.
For each position (i, j) in your grid calculate the Manhattan distance from the center of your diamond. If it exceeds the "radius" of the diamond, print a * otherwise print a space.
If the center of the diamond is (x, y) the Manhattan distance to the position (i, j) is given by this formula:
int distanceFromCenter = Math.abs(x - i) + Math.abs(y - j);
Note that if you use the formula for the Euclidean distance instead of the Manhattan distance you will get a circle instead of a diamond, though it might be difficult to see the difference between these two shapes at a 7x7 resolution.